{ "opencollection": "1.0.0", "info": { "name": "Pipedrive API v1 Activities Tasks API", "version": "1.0.0" }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "Get all tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.pipedrive.com/v1/tasks", "params": [ { "name": "cursor", "value": "", "type": "query", "description": "For pagination, the marker (an opaque string value) representing the first item on the next page" }, { "name": "limit", "value": "", "type": "query", "description": "For pagination, the limit of entries to be returned. If not provided, up to 500 items will be returned." }, { "name": "assignee_id", "value": "", "type": "query", "description": "If supplied, only tasks that are assigned to this user are returned" }, { "name": "project_id", "value": "", "type": "query", "description": "If supplied, only tasks that are assigned to this project are returned" }, { "name": "parent_task_id", "value": "", "type": "query", "description": "If `null` is supplied then only parent tasks are returned. If integer is supplied then only subtasks of a specific task are returned. By default all tasks are returned." }, { "name": "done", "value": "", "type": "query", "description": "Whether the task is done or not. `0` = Not done, `1` = Done. If not omitted then returns both done and not done tasks." } ], "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Returns all tasks. This is a cursor-paginated endpoint. For more information, please refer to our documentation on pagination." }, { "info": { "name": "Add a task", "type": "http" }, "http": { "method": "POST", "url": "https://api.pipedrive.com/v1/tasks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Adds a new task." }, { "info": { "name": "Get details of a task", "type": "http" }, "http": { "method": "GET", "url": "https://api.pipedrive.com/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the task" } ], "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Returns the details of a specific task." }, { "info": { "name": "Update a task", "type": "http" }, "http": { "method": "PUT", "url": "https://api.pipedrive.com/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the task" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Updates a task." }, { "info": { "name": "Update a task", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.pipedrive.com/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the task" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Updates a task." }, { "info": { "name": "Delete a task", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pipedrive.com/v1/tasks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the task" } ], "auth": { "type": "apikey", "key": "x-api-token", "value": "{{x-api-token}}", "placement": "header" } }, "docs": "Marks a task as deleted. If the task has subtasks then those will also be deleted." } ] } ], "bundled": true }