Get project tasks

GET /data/projects/{project_id}/tasks

Retrieve tasks related to a project. Useful for sync.

Path parameters

  • project_id string Required

Query parameters

  • page
  • task_type_id
  • episode_id

Responses

  • 200 application/json

    All tasks related to given project

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes object
      • id string(uuid)
      • name string
      • task_type_id string(uuid)
      • task_status_id string(uuid)
      • entity_id string(uuid)
      • project_id string(uuid)
      • assignees array[string(uuid)]
    • limit integer
    • page integer
    • is_more boolean
GET /data/projects/{project_id}/tasks
curl \
 --request GET 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/tasks' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "id": "a24a6ea4-ce75-4665-a070-57453082c25",
      "name": "SH010 Animation",
      "task_type_id": "b24a6ea4-ce75-4665-a070-57453082c25",
      "task_status_id": "c24a6ea4-ce75-4665-a070-57453082c25",
      "entity_id": "d24a6ea4-ce75-4665-a070-57453082c25",
      "project_id": "e24a6ea4-ce75-4665-a070-57453082c25",
      "assignees": [
        "f24a6ea4-ce75-4665-a070-57453082c25"
      ]
    }
  ],
  "limit": 100,
  "page": 1,
  "is_more": true
}