- 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
Switch Color Gamut
PUT
/api/v1/screen/output/gamut
/api/v1/screen/output/gamut
All
Request
Header Params
Content-Type
string
required
Example:
application/json
Body Params application/json
name
string
Gamut name
screenIdList
array[string]
Screen ID list
Example
{
"name": "string",
"screenIdList": [
"string"
]
}
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/screen/output/gamut' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "string",
"screenIdList": [
"string"
]
}'
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