# Save Seam Correction Coefs
This API can be used to save the seam correction coefficients to the receivers. The saved coefficients will remain valid after powering cycle the receivers.
# Request Path
{CLTPlatform-ip}:8086/advancedSeam/saveSeamCoef
- Replace
{CLTPlatform-ip}
with the corresponding IP address. - The request port is
8086
.
# Protocol
HTTP
# Method
POST
# Request Parameters
- Set the
Content-Type
of the request body toapplication/json
.
Parameter Name | Description | Required | Type | Data Dictionary | Restriction | Example |
---|---|---|---|---|---|---|
command | Command type | Yes | [string] | advancedSeam/saveSeamCoef | ||
data | Data | Yes | [object] | |||
data>>processorIndex | Sender index (starts from 0) | Yes | [int] | 0 | ||
data>>screenGroupID | Screen group index (starts from 0) | Yes | [int] | 0 |
# Request Example
{
"command": "advancedSeam/saveSeamCoef",
"data": {
"processorIndex": 0,
"screenGroupID": 0
}
}
# Response
Parameter Name | Description | Required | Type | Data Dictionary | Restriction | Example |
---|---|---|---|---|---|---|
command | Command type | Yes | [string] | advancedSeam/saveSeamCoef | ||
code | Status code | Yes | [int] | 20000 | ||
message | Message | Yes | [string] | Common_Success | ||
data | Data | Yes | [object] |
# Response Example
{
"command": "advancedSeam/saveSeamCoef",
"code": 20000,
"message": "Common_Success",
"data": {}
}