Skip to main content
GET
/
panel
/
{resourceId}
/
controller
/
list
Find Controllers By Panel Id
curl --request GET \
  --url https://apigw.bienport.com/api/panel/{resourceId}/controller/list \
  --header 'Authorization: <authorization>' \
  --header 'OrganizationId: <organizationid>'
[
  {
    "hardwareSerialNumber": "<string>",
    "id": 123,
    "resourceId": 123,
    "orderNo": 123,
    "ioType": "Digital",
    "ioDirection": "Input",
    "trueValue": "<string>",
    "falseValue": "<string>",
    "description": "<string>",
    "controllerName": "<string>",
    "controllerId": 123,
    "partitions": [
      {
        "name": "<string>",
        "no": 123
      }
    ]
  }
]

Headers

Authorization
string
required

Access Token

OrganizationId
string
required

Organization ID

Path Parameters

resourceId
integer
required

resourceId

Response

Controllers connected to the panel.

hardwareSerialNumber
string
id
integer
resourceId
integer
orderNo
integer
ioType
enum<string>
Available options:
Digital,
Analog,
AnalogDigital,
SerialUSART,
SerialRS232,
SerialRS485,
SerialCAN,
SerialEthernet,
SerialI2C,
SerialSPI,
SerialOneWire,
User,
SerialMdb,
SerialWireless
ioDirection
enum<string>
Available options:
Input,
Output,
InputOutput
trueValue
string
falseValue
string
description
string
controllerName
string
controllerId
integer
partitions
ResourcePartitionResponse · object[]