{ "opencollection": "1.0.0", "info": { "name": "Freshworks Freshcaller Accounts Tasks API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "X-Api-Auth", "value": "{{X-Api-Auth}}", "placement": "header" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "List all tasks", "type": "http" }, "http": { "method": "GET", "url": "https://{domain}.freshcaller.com/api/v1/tasks", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination." }, { "name": "filter", "value": "", "type": "query", "description": "Filter tasks by status (open, due_today, due_tomorrow, overdue, completed)." } ] }, "docs": "Retrieves a paginated list of all tasks in the CRM." }, { "info": { "name": "Create a task", "type": "http" }, "http": { "method": "POST", "url": "https://{domain}.freshcaller.com/api/v1/tasks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new task in the CRM." }, { "info": { "name": "View a task", "type": "http" }, "http": { "method": "GET", "url": "https://{domain}.freshcaller.com/api/v1/tasks/:task_id", "params": [ { "name": "task_id", "value": "", "type": "path", "description": "The ID of the task." } ] }, "docs": "Retrieves the details of a specific task by its ID." }, { "info": { "name": "Update a task", "type": "http" }, "http": { "method": "PUT", "url": "https://{domain}.freshcaller.com/api/v1/tasks/:task_id", "params": [ { "name": "task_id", "value": "", "type": "path", "description": "The ID of the task." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the properties of an existing task." }, { "info": { "name": "Delete a task", "type": "http" }, "http": { "method": "DELETE", "url": "https://{domain}.freshcaller.com/api/v1/tasks/:task_id", "params": [ { "name": "task_id", "value": "", "type": "path", "description": "The ID of the task." } ] }, "docs": "Deletes a task from the CRM." } ] } ], "bundled": true }