Scene#

Note

The endpoints listed on this page require a project to be loaded on the controller.

Methods#

POST#

Control a scene in the project.

POST /api/scene

Payload is a JSON object with the following attributes:

Attribute

Value Type

Description

Value Example

action

string

The action to perform on the scene: at the moment only recall is supported

"recall"

num

integer

The number of the scene to perform the action on.

1

For example, to start a scene 2, the request payload is:

{
  "action": "recall",
  "num": 2
}

To get the status of the scenes on a space basis, use the Space API.