- Contents
- API Instructions
- Error Code
- General
- Input
- Screen
- Device
- Cabinet
- Retrieve Cabinet Information
- Brightness Adjustment
- Color Temperature Adjustment
- Cabinet Control
- Cabinet Identify
- Multi-Mode
- Configure Cabinet Topology
Adjust Cabinet Color Temperature
PUT
/api/v1/device/cabinet/colortemperature
/api/v1/device/cabinet/colortemperature
All
TIP
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
idList
array[number]
Cabinet ID list
value
number
required
Example
{
"idList": [
0
],
"value": 0
}
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 PUT 'http://127.0.0.1:8001/api/v1/device/cabinet/colortemperature' \
--header 'Content-Type: application/json' \
--data-raw '{
"idList": [
0
],
"value": 0
}'
Responses
🟢200Successful
application/json
Body
code
integer
optional
data
object
optional
message
string
optional
Example
{
"code": 0,
"data": {},
"message": "string"
}
Modified at 2024-07-09 11:01:54