Variable Commands
Assign an input variable to a title variable..
optional id to track this command, will be returned in the response
optional: UUID of title/layer to operate on
optional: Name (or UUID) of the title to operate on.
Test
optional: Input name, used to select the title(s) to operate on
Name of the input variable.
Name of the title variable to connect input to.
GET /api/command/assignVariable HTTP/1.1
Host: 127.0.0.1:9022
Accept: */*
{
"result": {
"command": "assignVariable",
"reply": "assignVariable",
"success": true
}
}
Change the dynamic state of a specific title variable.
optional id to track this command, will be returned in the response
optional: UUID of title/layer to operate on
optional: Name (or UUID) of the title to operate on.
Test
channel to query or -1 for all; channels are numbered from left to right starting at 0 regardless of their names in the project
0
name of the variable
message
1 to set to dynamic, 0 to set to static.
1
GET /api/command/setDynamic HTTP/1.1
Host: 127.0.0.1:9022
Accept: */*
{
"result": {
"command": "setDynamic",
"reply": "setDynamic",
"success": true
}
}
Last updated