Shoot
Each Tenant is allowed a collection of Shoots.
These act as a grouping of 360 media, typically corresponding to a photoshoot session.
Get an individual shoot by id
In this case, you have to send a valid Access Token (as a JWT Token) in the Authorization header, using the Bearer authentication scheme.
e.g. Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6Ikpva...
Unique shoot id
683606ee-9788-4d88-adb8-77119de4c6a2Unique tenant id
f700d27e-64ed-4571-ae2e-8c948c1c296esuccess
unauthorized
not found
GET /api/tenant/{tenantId}/shoot/{shootId} HTTP/1.1
Host: api.orb360.tech
Accept: */*
{
"shoot": {
"id": "683606ee-9788-4d88-adb8-77119de4c6a2",
"version": 123,
"createdBy": "auth0|dd5e21fb23efe45d1761ddce",
"name": "Black Cat",
"tenant": "fdb67f2e-219d-4771-b14f-a2ddc24b812b",
"dateCreated": 1594988393066,
"dateUpdated": 1594988393066,
"published": true,
"integrations": {
"findByTag": {
"enabled-apiKey": true,
"enabled-public": true
},
"findById": {
"enabled-apiKey": true,
"enabled-public": true
}
},
"generatedMediaPresets": {
"360_V2": {
"jpg": null,
"gif": null,
"mp4": null
},
"SINGLE_IMAGE": {
"jpg": null
},
"VIDEO": {
"m3u8": null
}
},
"mediaNameFormat": "{tag:StyleNumber}",
"mediaTagKeys": [
"StyleNumber"
]
}
}List available Shoots within the requested Tenant
In this case, you have to send a valid Access Token (as a JWT Token) in the Authorization header, using the Bearer authentication scheme.
e.g. Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6Ikpva...
Unique tenant id
f700d27e-64ed-4571-ae2e-8c948c1c296esuccess
unauthorized
GET /api/tenant/{tenantId}/shoot HTTP/1.1
Host: api.orb360.tech
Accept: */*
{
"shoots": null
}Last updated