Get shot previews

GET /data/shots/{shot_id}/preview-files

Return previews for a shot as a dict keyed by task type id. Each value is an array of previews for that task type.

Path parameters

  • shot_id Required

Responses

  • 200 application/json

    All previews related to given shot

    Hide response attribute Show response attribute object
    • * array[object] Additional properties
      Hide * attributes Show * attributes object
      • id string(uuid)
      • revision integer
      • file_id string(uuid)
GET /data/shots/{shot_id}/preview-files
curl \
 --request GET 'http://api.example.com/data/shots/a24a6ea4-ce75-4665-a070-57453082c25/preview-files' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "a24a6ea4-ce75-4665-a070-57453082c25": [
    {
      "id": "b24a6ea4-ce75-4665-a070-57453082c25",
      "file_id": "c24a6ea4-ce75-4665-a070-57453082c25",
      "revision": 3
    }
  ]
}