# Check Soft Edge Support

This API can be used to check whether the receivers connected to a specified screen support advanced seam correction (Advanced Soft Edge).

# Request Path

{CLTPlatform-ip}:8086/advancedSeam/getReceiverIsSupportSeam

  • 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 to application/json.
Parameter Name Description Required Type Data Dictionary Restriction Example
command Command type Yes [string] advancedSeam/getReceiverIsSupportSeam
data Data Yes [object]
data>>processorIndex Sender index (starts from 0) Yes [int]
data>>screenGroupID Screen group index (starts from 0) Yes [int]

# Request Example

{
    "command": "advancedSeam/getReceiverIsSupportSeam",
    "data": {
        "processorIndex": 0,
        "screenGroupID": 0
    }
}

# Response

Parameter Name Description Required Type Data Dictionary Restriction Example
command Command type Yes [string] advancedSeam/getReceiverIsSupportSeam
code Status code Yes [int] 20000
message Message Yes [string] Common_Success
data Data Yes [object]
data>>isSupportSeam Indicates whether the receivers support seam correction (Soft Edge). Yes [boolean]
data>>isSupportDeltaSeam Indicates wheter the receivers support delta seam correction. Yes [boolean]

# Response Example

{
    "command": "advancedSeam/getReceiverIsSupportSeam",
    "code": 20000,
    "message": "Common_Success",
    "data": {
        "isSupportSeam": false,
        "isSupportDeltaSeam": false
    }
}

# Detailed Description