The "includeInputConnectorProperties" property specifies names of connector properties. When it is included in the request, the response includes an "inputConnectors" list that contains all the connectors related to the request. Each item in the list is an object that contains the specified properties.
If the "includeInputConnectorProperties" array is empty [], each object in the list contains the unique name of the connector, which you can use to look up additional information.
If the "includeInputConnectorProperties" array is omitted or null, the "inputConnectors" list is not included in the response.
This property is an array of strings which can include "connectorName", "connectorId", "settings", "serviceName", and/or "metadata".
Note inputs and outputs are included separately because they have different properties.
Request example 1
"includeInputConnectorProperties": [],Response example
"inputConnectors": [
{ "connectorName": "Modbus1 Input" }
],Request example 2
"includeInputConnectorProperties": [ "connectorName", "lastCollectedTimestamp" ],Response example 2
"inputConnectors": [
{
"connectorName": "Modbus1 Input", "lastCollectedTimestamp": "2025-08-28T10:47:13.041"
}
],