List Workspace Asset Division Device Signals
GET/api/v1/workspaces/:workspace/assets/:asset/divisions/:division/devices/:device/signals
List all Signals
in a Workspace/Asset/Division/Device
group by their Names
.
Request
Path Parameters
Name
of the Workspace
Name
of the Asset
Name
of the Division
Name
of the Device
Query Parameters
Possible values: > 0
and <= 100
100
Possible values: [id
, name
, physicalUnit
, dataType
, description
, longDescription
]
Possible values: [asc
, desc
]
asc
Responses
- 200
- 400
- 401
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: > 0
100
data
object[]
required
ID
of the Signal
Possible values: > 0
1000
Name
of the Signal
Signal 1
Physical unit of the Signal
m/s
Data type
of the Signal
Possible values: [float
, boolean
, string
, json
]
float
Description
of the Signal
Description
Long description of the Signal
next
object
eyJjdXJzb3IiOjEsInRva2VuIjoiIn0K
/workspaces/Workspace1/assets/Asset1/divisions/Division1/devices/Device1/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/devices/Device1/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"
}