- 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
Set Custom Gamma for the Screen
POST
/api/v1/screen/gamma/update
/api/v1/screen/gamma/update
MX6000
TIP
Request
Body Params application/json
array of:
screenId
string
Screen ID
gammaTable
array[number]
required
Example
[
{
"screenId": "{xxxxx}",
"gammaTable": [
0,
1,
2,
3
]
}
]
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 POST 'http://127.0.0.1:8001/api/v1/screen/gamma/update' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"screenId": "{xxxxx}",
"gammaTable": [
0,
1,
2,
3
]
}
]'
Responses
🟢200Successful
application/json
Body
code
integer
required
data
string
required
message
string
required
Example
{
"code": 0,
"data": "",
"message": "Success"
}
Modified at 2024-07-09 11:01:54