Get entity output type files

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

Retrieve all output files for a given entity and output type. Optionally filter by representation.

Path parameters

  • entity_id string(uuid) Required

    Entity unique identifier

  • output_type_id string(uuid) Required

    Output type unique identifier

Query parameters

  • representation string

    Filter by representation

Responses

  • 200 application/json

    All output files for the entity and output type

    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-types/{output_type_id}/output-files
curl \
 --request GET 'http://api.example.com/data/entities/a24a6ea4-ce75-4665-a070-57453082c25/output-types/b35b7fb5-df86-5776-b181-68564193d36/output-files' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "c46c8gc6-eg97-6887-c292-79675204e47",
    "name": "main",
    "revision": 1,
    "path": "/project/asset/output/main_v001.mp4",
    "updated_at": "2023-01-01T12:00:00Z",
    "entity_id": "d57d9hd7-fh08-7998-d403-80786315f58"
  }
]