provider Tasks GET
/tasks @utdk/pipedrive
/tasks Get all tasks
Returns all tasks. This is a cursor-paginated endpoint. For more information, please refer to our documentation on <a href="https://pipedrive.readme.io/docs/core-api-concepts-pagination" target="_blank" rel="noopener noreferrer">pagination</a>.
- cursor query
- For pagination, the marker (an opaque string value) representing the first item on the next page
- string
- limit query
- For pagination, the limit of entries to be returned. If not provided, up to 500 items will be returned.
- integer
- assignee_id query
- If supplied, only tasks that are assigned to this user are returned
- integer
- project_id query
- If supplied, only tasks that are assigned to this project are returned
- integer
- parent_task_id query
- 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.
- integer
- done query
- Whether the task is done or not. `0` = Not done, `1` = Done. If not omitted then returns both done and not done tasks.
- enum: 0, 1
Try it
Authentication
Configure credentials for Pipedrive API v1
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import pipedrive from '@utdk/pipedrive';
await pipedrive.gettasks()