Scenes
- Get List of Scenes
- Get a Scene
- Copy Scene by public Scene sid
Description
Get list of Scenes information
URL
[GET] https://hubs.xrcloud.belivvr.com/v1/scenes?page=1&size=10
Request
Headers
key | value |
---|---|
app_key | App Key |
app_secret | App Secret |
Query
key | type | default |
---|---|---|
page | number | 1 |
size | number | 10 |
Response (200 OK)
{
"currentPage": 0,
"totalPages":4,
"results": 50,
"next": true,
"data": [
{
"sceneSid": "",
"name": "",
"thumbnailUrl": "",
"active": true,
"createdAt": "",
"updatedAt": ""
}
]
}
Response (204 No Content)
When response has no data or Not Found any data
Response (401 Unauthorized)
When received wrong app_key
or app_secret
Description
Get a Scene information by sceneSid
URL
[GET] https://hubs.xrcloud.belivvr.com/v1/scenes/:sceneSid
Request
Headers
key | value |
---|---|
app_key | App Key |
app_secret | App Secret |
Response (200 OK)
{
"sceneSid": "",
"name": "",
"thumbnailUrl": "",
"active": true,
"createdAt": "",
"updatedAt": ""
}
Response (204 No Content)
When response has no data or Not Found any data
Response (401 Unauthorized)
When received wrong app_key
or app_secret
Description
Copy public Scene by sceneSid
URL
[POST] https://hubs.xrcloud.belivvr.com/v1/scenes/:sceneSid
Request
Headers
key | value |
---|---|
app_key | App Key |
app_secret | App Secret |
Response (204 No Content)
Response (400 Bad Request)
When sceneSid
is not exists
Response (401 Unauthorized)
When received wrong app_key
or app_secret