- Contents
- API Instructions
- Error Code
- General
- Input
- Screen
- Image booster
- Layer
- Processing
- Canvas
- Preset
- Schedule
- Output
- Image Booster
- Retrieve Screen Properties InformationGET
- Retrieve the Number of Cabinets of the ScreenGET
- Retrieve Screen InformationGET
- Device
- Cabinet
Retrieve All Schedule Information of the Screens
GET
/api/v1/screen/schedule/all
/api/v1/screen/schedule/all
TIP
Request
Header Params
Content-Type
string
required
Example:
application/json
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/screen/schedule/all' \
--header 'Content-Type: application/json'
Responses
🟢200Successful
application/json
Body
code
number
optional
data
array [object {10}]
optional
screenId
string
Screen ID
enable
boolean
Schedule enabled or not
brightnessMappingMode
number
Brightness mapping mode
relatedToMultiMode
boolean
Whether to associate multi-mode
brightnessMappingList
array [object {5}]
Brightness mapping table
brightnessStrategyList
array [object {10}]
Brightness policy
presetStrategyList
array [object {8}]
Preset policy
powerStrategyList
array[string]
Power supply policy
peripheralList
array [object {3}]
Multi-function card peripheral information configured for the screen
powerInfoList
array[string]
Multi-function card power channel configured for this screen
message
string
optional
Example
{
"code": 0,
"data": [
{
"screenId": "string",
"enable": true,
"brightnessMappingMode": 0,
"relatedToMultiMode": true,
"brightnessMappingList": [
{
"id": "string",
"ambientBrightness": 0,
"screenBrightnessRatio": 0,
"screenBrightnessNit": 0,
"modeName": "string"
}
],
"brightnessStrategyList": [
{
"strategyId": "string",
"strategyType": 0,
"startTime": "string",
"endTime": "string",
"adjustType": 0,
"brightnessRatio": 0,
"brightnessNit": 0,
"repeatEnable": true,
"repeatList": [
0
],
"repeatEndTime": "string"
}
],
"presetStrategyList": [
{
"strategyId": "string",
"strategyType": 0,
"startTime": "string",
"presetNum": 0,
"presetName": "string",
"repeatEnable": true,
"repeatList": [
0
],
"repeatEndTime": "string"
}
],
"powerStrategyList": [
"string"
],
"peripheralList": [
{
"mfCardId": 0,
"peripheralIndex": 0,
"peripheralType": 0
}
],
"powerInfoList": [
"string"
]
}
],
"message": "string"
}
Modified at 2024-07-09 11:01:54