scenes

Api reference content
get/api/scenes

Retrives all scenes. Results can be paged with query parameters start and limit.

Parameters

ParameterPlaceRequiredDescription
startqueryrequiredFirst item in page
limitqueryrequiredNumber of items in page

Responses

StatusDescription
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]"
}