Get all working files for a given entity and possibly a task and a name.

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

Path parameters

  • entity_id string(uuid) Required

Query parameters

  • task_id string(uuid)
  • name string

Responses

  • 200 application/json

    All working files for given entity and possibly a task and a name

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • revision integer
    • path string
    • updated_at string(date-time)
    • task_id string(uuid)
    • entity_id string(uuid)
  • 404

    Entity not found

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": "string",
    "name": "string",
    "revision": 42,
    "path": "string",
    "updated_at": "2025-05-04T09:42:00Z",
    "task_id": "string",
    "entity_id": "string"
  }
]