{ "opencollection": "1.0.0", "info": { "name": "Labguru Antibodies Plants API", "version": "v1" }, "items": [ { "info": { "name": "Plants", "type": "folder" }, "items": [ { "info": { "name": "List all plants in your account", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/plants", "params": [ { "name": "token", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query", "description": "The default call is with page = 1" }, { "name": "meta", "value": "", "type": "query", "description": "Show summarized data information - true/false" } ] }, "docs": "List all plants.\n" }, { "info": { "name": "Create a plant", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/plants", "body": { "type": "json", "data": "{}" } }, "docs": "Create a plant.\n" }, { "info": { "name": "Get a plant by ID", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/plants/:id", "params": [ { "name": "token", "value": "", "type": "query" }, { "name": "id", "value": "", "type": "path", "description": "The ID of the plant" } ] }, "docs": "Get plant by ID.\n" }, { "info": { "name": "Update plant", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/api/v1/plants/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the plant" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update plant.\n" }, { "info": { "name": "Delete plant", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/v1/plants/:id", "params": [ { "name": "token", "value": "", "type": "query" }, { "name": "id", "value": "", "type": "path", "description": "plant id" } ] }, "docs": "Delete plant" } ] } ], "bundled": true }