The "listOutputs" action obtains a list of the names of previously created outputs. Outputs deliver tags from the server to external systems.
Note A tag is a piece of named data with an associated value. For example, the tag
temperature 70includes both the named data temperature and the value70. In JSON, a tag is a JSON property, such as"temperature": 70. In a SQL table, a tag is a data field, such as a field named temperature with a value of70.
- You can return a filtered list by specifying a partial name in the
"partialName"property. - You can include additional items in the list by searching for words contained in the item’s metadata.
- Use
"describeOutputs"to get detailed information about specific outputs.
Request examples
Minimal
{
"apiVersion": "1.0",
"action": "listOutputs",
"requestId": "00000001",
"params": { },
"authToken": "replaceWithAuthTokenFromCreateSession"
}Maximal
{
"api": "hub",
"apiVersion": "1.0",
"action": "listOutputs",
"requestId": "00000001",
"params": {
"partialName": ""
},
"authToken": "replaceWithAuthTokenFromCreateSession"
}
Response examples
Minimal
{
"result": {
"data": []
},
"requestId": "00000055",
"errorCode": 0,
"errorMessage": ""
}Maximal
{
"result": {
"data": []
},
"requestId": "00000056",
"errorCode": 0,
"errorMessage": ""
}
Properties
Request properties ("params")
| Property | Description | Default | Type | Limits (inclusive) |
|---|---|---|---|---|
enabledFilter |
The "enabledFilter" property returns input connections that are enabled or not. Omit or set to null to match all connections. |
Optional with default of null
|
Boolean |
|
partialName |
The |
Optional with default of ""
|
string | 1 to 64 bytes |
runningFilter |
The "runningFilter" property returns input connections that are running or not. Omit or set to null to match all connections. |
Optional with default of null
|
Boolean |
|
Response properties ("result")
| Property | Description | Type | Limits (inclusive) |
|---|---|---|---|
data |
The |
array of objects | The action determines its contents. |