Get entity working files

GET /data/entities/{entity_id}/working-files

Retrieve all working files for a given entity with optional filtering by task and name. Returns complete list of working files with their revisions.

Path parameters

  • entity_id string(uuid) Required

    Entity unique identifier

Query parameters

  • task_id string(uuid)

    Filter by task

  • name string

    Filter by file name

Responses

  • 200 application/json

    All working files for the entity

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

      Working file unique identifier

    • name string

      Working file name

    • revision integer

      Working file revision

    • path string

      Working file path

    • updated_at string(date-time)

      Last update timestamp

    • task_id string(uuid)

      Task identifier

    • entity_id string(uuid)

      Entity identifier

GET /data/entities/{entity_id}/working-files
curl \
 --request GET 'http://api.example.com/data/entities/a24a6ea4-ce75-4665-a070-57453082c25/working-files' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "c46c8gc6-eg97-6887-c292-79675204e47",
    "name": "main",
    "revision": 1,
    "path": "/project/asset/working/main_v001.blend",
    "updated_at": "2023-01-01T12:00:00Z",
    "task_id": "d57d9hd7-fh08-7998-d403-80786315f58",
    "entity_id": "e68e0ie8-gi19-8009-e514-91897426g69"
  }
]