scenes
Api reference content
get/api/scenes/{sceneId}
Gets a scene by its ID
Parameters
| Parameter | Place | Required | Description |
|---|---|---|---|
| sceneId | path | required |
Responses
| Status | Description |
|---|---|
| 200 | application/json {
"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]"
}
]
}
} |
| 404 | application/json {
"errors": "[string]"
} |