scenes
Api reference content
get/api/scenes
Retrives all scenes. Results can be paged with query parameters start and limit.
Parameters
Parameter | Place | Required | Description |
---|---|---|---|
start | query | required | First item in page |
limit | query | required | Number of items in page |
Responses
Status | Description |
---|---|
200 | application/json { "_links": { "next": "string", "base": "string", "self": "string" }, "start": "double", "limit": "double", "results": [ { "id": "string", "name": "string", "start_at": "double", "days_of_week": "string", "date_range": { "to": "date-time", "from": "date-time" }, "actions": { "leave_channel": [ { "devices": "[string]" } ], "join_emitter_channel": [ { "emitter": "string", "devices": "[string]" } ], "join_local_channel": [ { "channel_id": "string", "devices": "[string]" } ], "change_volume": [ { "volume": "double", "devices": "[string]" } ] } } ] } |
400 | application/json { "errors": "[string]" } |