List Workspace Asset Division Unit Signals
GET/api/v1/workspaces/:workspace/assets/:asset/divisions/:division/units/:unit/signals
List all Signals in a Workspace/Asset/Division/Unit group by their Names.
Request
Path Parameters
Name of the Workspace
Name of the Asset
Name of the Division
Name of the Unit
Query Parameters
Possible values: > 0 and <= 100
100Possible values: [id, name, physicalUnit, dataType, description, longDescription]
Possible values: [asc, desc]
ascResponses
- 200
- 400
- 401
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: > 0
100data
object[]
required
ID of the Signal
Possible values: > 0
1000Name of the Signal
Signal 1Physical unit of the Signal
m/sData type of the Signal
Possible values: [float, boolean, string, json]
floatDescription of the Signal
DescriptionLong description of the Signal
next
object
eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K/workspaces/Workspace1/assets/Asset1/divisions/Division1/units/Unit1/signals/api/v1?size=10&sortBy=name&sortOrder=asc&nextToken=eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K{
"size": 100,
"data": [
{
"id": 1000,
"name": "Signal 1",
"physicalUnit": "m/s",
"dataType": "float",
"description": "Description",
"longDescription": "string"
}
],
"next": {
"token": "eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K",
"href": "/workspaces/Workspace1/assets/Asset1/divisions/Division1/units/Unit1/signals/api/v1?size=10&sortBy=name&sortOrder=asc&nextToken=eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K"
}
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: [Validation Error]
errors
object[]
required
Possible values: [body, query, path, headers]
{
"status": "Validation Error",
"errors": [
{
"error": "string",
"location": "body"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [Unauthorized]
{
"status": "Unauthorized"
}