Get project shots

GET /data/projects/{project_id}/shots

Get shots for a project. May limit to assigned shots for vendor users.

Path parameters

  • project_id Required

Responses

  • 200 application/json

    All shots related to given project

    Hide response attributes Show response attributes object
    • id string(uuid)
    • name string
    • project_id string(uuid)
    • parent_id string(uuid)
GET /data/projects/{project_id}/shots
curl \
 --request GET 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/shots' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "SH010",
    "project_id": "b24a6ea4-ce75-4665-a070-57453082c25",
    "parent_id": "c24a6ea4-ce75-4665-a070-57453082c25"
  }
]