{ "opencollection": "1.0.0", "info": { "name": "Twenty CRM Companies Tasks API", "version": "0.40" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "List tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.twenty.com/rest/tasks", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of records to return per page." }, { "name": "order_by", "value": "", "type": "query", "description": "Field and direction to sort by, e.g. `createdAt[DescNullsLast]`." }, { "name": "filter", "value": "", "type": "query", "description": "Filter expression, e.g. `name[eq]:Acme`." }, { "name": "depth", "value": "", "type": "query", "description": "Relation traversal depth (0, 1, or 2) to embed related records." } ] }, "docs": "List tasks" }, { "info": { "name": "Create a task", "type": "http" }, "http": { "method": "POST", "url": "https://api.twenty.com/rest/tasks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a task" }, { "info": { "name": "Get a task", "type": "http" }, "http": { "method": "GET", "url": "https://api.twenty.com/rest/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the record." } ] }, "docs": "Get a task" }, { "info": { "name": "Update a task", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.twenty.com/rest/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the record." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a task" }, { "info": { "name": "Delete a task", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.twenty.com/rest/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The UUID of the record." } ] }, "docs": "Delete a task" } ] } ], "bundled": true }