{ "opencollection": "1.0.0", "info": { "name": "Follow Up Boss Calls Tasks API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "List tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.followupboss.com/v1/tasks" }, "docs": "List tasks" }, { "info": { "name": "Create a task", "type": "http" }, "http": { "method": "POST", "url": "https://api.followupboss.com/v1/tasks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a task" }, { "info": { "name": "Retrieve a task", "type": "http" }, "http": { "method": "GET", "url": "https://api.followupboss.com/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Retrieve a task" }, { "info": { "name": "Update a task", "type": "http" }, "http": { "method": "PUT", "url": "https://api.followupboss.com/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a task" }, { "info": { "name": "Delete a task", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.followupboss.com/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a task" } ] } ], "bundled": true }