Get sequences and tasks

GET /data/sequences/with-tasks

Get sequences and their related tasks. Optionally filter by project.

Query parameters

  • project_id

Responses

  • 200 application/json

    All sequences

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • project_id string(uuid)
    • tasks array[object]
      Hide tasks attributes Show tasks attributes object
      • id string(uuid)
      • name string
GET /data/sequences/with-tasks
curl \
 --request GET 'http://api.example.com/data/sequences/with-tasks' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "SQ010",
    "project_id": "b24a6ea4-ce75-4665-a070-57453082c25",
    "tasks": [
      {
        "id": "c24a6ea4-ce75-4665-a070-57453082c25",
        "name": "SQ010 Editing"
      }
    ]
  }
]