- Contents
- API Instructions
- Error Code
- General
- Retrieve Screen InformationGET
- Set Screen BrightnessPUT
- Set Screen GammaPUT
- Set Blackout/Freeze ScreenPUT
- Retrieve Preset InformationGET
- Apply PresetPOST
- Retrieve All Cabinet InformationGET
- Enable Cabinet MappingPUT
- Retrieve Input Source ListGET
- Switch Source for LayerPUT
- Set EDIDPUT
- Set Screen Color TemperaturePUT
- Input
- Screen
- Device
- Cabinet
Retrieve Preset Information
GET
/api/v1/preset
/api/v1/preset
All
TIP
Request
None
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'http://127.0.0.1:8001/api/v1/preset'
Responses
🟢200Successful
application/json
Body
screenPresetList
array [object {2}]
Preset information of all screens.
presetList
array [object {8}]
Preset list of the screen.
screenID
string
Screen ID
Example
{
"screenPresetList": [
{
"presetList": [
{
"sequenceNumber": 0,
"name": "string",
"state": true,
"sourceData": true,
"processingData": true,
"outputData": true,
"screenData": true,
"effectSwitch": 0
}
],
"screenID": "string"
}
]
}
Modified at 2024-07-09 11:01:54