Get detailed asset
GET/api/v1/assets/:id/detail
Request
Path Parameters
id stringrequired
ID of the asset
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
serverTime date-time
error stringnullable
description of error in natural language, absent in case of successful operation
payload
object
nullable
The response data
id string
name string
aliasIds string[]
dacs
object
id int32
startDate string
history
object[]
id int32
startDate string
{
"serverTime": "2024-01-01T09:00:00.000Z",
"error": "string",
"payload": {
"id": "string",
"name": "string",
"aliasIds": [
"string"
],
"dacs": {
"id": 0,
"startDate": "string",
"history": [
{
"id": 0,
"startDate": "string"
}
]
}
}
}
Loading...