Get all assets
GET/api/v1/assets
Request
Query Parameters
dacsId string
ID of DACS category to filter on
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
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...