{ "opencollection": "1.0.0", "info": { "name": "Salesflare Accounts Tasks API", "version": "1.0.0" }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "List tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.salesflare.com/tasks", "params": [ { "name": "id", "value": "", "type": "query" }, { "name": "search", "value": "", "type": "query", "description": "Search tasks by name or description." }, { "name": "assignees", "value": "", "type": "query", "description": "List of user IDs from the team. Defaults to the authenticated user's ID." }, { "name": "type", "value": "", "type": "query", "description": "A list of task type ids." }, { "name": "account", "value": "", "type": "query", "description": "A list of account ids." }, { "name": "order_by", "value": "", "type": "query", "description": "Sort instructions. Provide either 'key' (ascending) or 'key desc' (descending). Default sort order is ascending. You can fetch available sort keys via a discover mode call." }, { "name": "limit", "value": "", "type": "query", "description": "The number of tasks to return. Defaults to 20." }, { "name": "offset", "value": "", "type": "query", "description": "The number of tasks to skip." }, { "name": "export", "value": "", "type": "query" }, { "name": "q", "value": "", "type": "query" } ] }, "docs": "Request a list of tasks with optional filters and pagination" }, { "info": { "name": "Create a task", "type": "http" }, "http": { "method": "POST", "url": "https://api.salesflare.com/tasks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a task" }, { "info": { "name": "Update a task", "type": "http" }, "http": { "method": "PUT", "url": "https://api.salesflare.com/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.salesflare.com/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a task" } ] } ], "bundled": true }