Get concepts and tasks

GET /data/concepts/with-tasks

Retrieve all concepts and all related tasks included in the response.

Query parameters

  • project_id

    Filter concepts by specific project

Responses

  • 200 application/json

    Concepts with tasks successfully retrieved

    Hide response attributes Show response attributes object
    • id string(uuid)

      Concept unique identifier

    • name string

      Concept name

    • description string

      Concept description

    • project_id string(uuid)

      Project identifier

    • project_name string

      Project name

    • asset_type_name string

      Asset type name

    • tasks array[object]
      Hide tasks attributes Show tasks attributes object
      • id string(uuid)

        Task unique identifier

      • name string

        Task name

      • task_type_id string(uuid)

        Task type identifier

    • created_at string(date-time)

      Creation timestamp

    • updated_at string(date-time)

      Last update timestamp

GET /data/concepts/with-tasks
curl \
 --request GET 'http://api.example.com/data/concepts/with-tasks' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "Character Design",
    "description": "Main character concept art",
    "project_id": "b35b7fb5-df86-5776-b181-68564193d36",
    "project_name": "My Animation Project",
    "asset_type_name": "Character",
    "tasks": [
      {
        "id": "c46c8gc6-eg97-6887-c292-79675204e47",
        "name": "Character Design Task",
        "task_type_id": "d57d9hd7-fh08-7998-d403-80786315f58"
      }
    ],
    "created_at": "2023-01-01T12:00:00Z",
    "updated_at": "2023-01-01T12:30:00Z"
  }
]