GET /tasks

Returns all tasks. This is a cursor-paginated endpoint. For more information, please refer to our documentation on pagination.

Servers

Query parameters

Name Type Required Description
project_id Integer No

If supplied, only tasks that are assigned to this project are returned

limit Integer No

For pagination, the limit of entries to be returned. If not provided, up to 500 items will be returned.

assignee_id Integer No

If supplied, only tasks that are assigned to this user are returned

parent_task_id Integer No

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.

done Number No

Whether the task is done or not. 0 = Not done, 1 = Done. If not omitted then returns both done and not done tasks.

Possible values:

  • 0
  • 1
cursor String No

For pagination, the marker (an opaque string value) representing the first item on the next page

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.