Get entity output files

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

Retrieve all output files for a given entity with optional filtering by output type, task type, representation, file status, and name.

Path parameters

  • entity_id string(uuid) Required

    Entity unique identifier

Query parameters

  • output_type_id string(uuid)

    Filter by output type

  • task_type_id string(uuid)

    Filter by task type

  • file_status_id string(uuid)

    Filter by file status

  • representation string

    Filter by representation

  • name string

    Filter by file name

Responses

  • 200 application/json

    All output files for the entity

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

      Output file unique identifier

    • name string

      Output file name

    • revision integer

      Output file revision

    • path string

      Output file path

    • updated_at string(date-time)

      Last update timestamp

    • entity_id string(uuid)

      Entity identifier

GET /data/entities/{entity_id}/output-files
curl \
 --request GET 'http://api.example.com/data/entities/a24a6ea4-ce75-4665-a070-57453082c25/output-files' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "e68e0ie8-gi19-8009-e514-91897426g69",
    "name": "main",
    "revision": 1,
    "path": "/project/asset/output/main_v001.mp4",
    "updated_at": "2023-01-01T12:00:00Z",
    "entity_id": "f79f1jf9-hj20-9010-f625-a09008537h80"
  }
]