Get asset
GET/api/v1/assets/:id
Request
Path Parameters
id stringrequired
The ID of the asset
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
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
Asset ID
name string
Asset name
aliasIds string[]nullable
List of other (alias) IDs used to represent this asset
dacsId int32
the ID of the DACS category this asset belongs to
{
"serverTime": "2024-01-01T09:00:00.000Z",
"error": "string",
"payload": {
"id": "BTC",
"name": "Bitcoin",
"aliasIds": [
"XBT"
],
"dacsId": 1
}
}
Loading...