The "includeOutputConnectorProperties" property causes the response to include an "outputConnectors" 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 "includeOutputConnectorProperties" 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 "includeOutputConnectorProperties" array is omitted or null, the "outputConnectors" list is not included in the response.
This property is an array of strings that can include "connectorName", "connectorId", "settings", "serviceName", and/or "metadata".
Note inputs and outputs are included separately because they have different properties.
Request example 1
"includeOutputConnectorProperties": [],Response example
"outputConnectors": [
{ "connectorName": "Modbus1 Output" }
],Request example 2
"includeOutputConnectorProperties": [ "connectorName", "lastDeliveredTimestamp" ],Response example 2
"outputConnectors": [
{
"connectorName": "Modbus1 Output", "lastDeliveredTimestamp": "2025-08-28T10:47:13.041"
}
],