# Full Screen Numbering

This API can be used to enable or disable the full-screen numbering function for specified network ports.

# API Path

{CLTPlatform-ip}:8086/receiver/screenMarkOrder

  • 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] receiver/screenMarkOrder
data Data Yes [object]
data>>senderIndex Sender index (starts from 0) Yes [int] 0
data>>portIndex Network port index (starts from 0) Yes [int] 0
data>>bEnable Whether to enable numbering Yes [boolean] true
data>>senderColor Highlight color, for example, 4294967295(0xFFFFFFFF) equals white RGB(255,255,255). Yes [long] 4294967295
data>>portColor Font color Yes [long] 4294967295

# Request Example

{
    "command": "receiver/screenMarkOrder",
    "data": {
        "senderIndex": 0,
        "portIndex": 0,
        "bEnable": true,
        "senderColor": 4294967295,
        "portColor": 4294967295
    }
}

# Response

Parameter Name Description Required Type Data Dictionary Restriction Example
command Command type Yes [string] receiver/screenMarkOrder
code Status code Yes [int] 20000
message Message Yes [string] Common_Success
data Data Yes [object]

# Response Example

{
    "command": "receiver/screenMarkOrder",
    "code": 20000,
    "message": "Common_Success",
    "data": {}
}

# Detailed Description