List addresses (Paginated)
GET {{baseUrl}}/vault/accounts/:vaultAccountId/:assetId/addresses_paginated
Returns a paginated response of the addresses for a given vault account and asset.
Body
PARAM
Key | Datatype | Required | Description |
limit
|
string | ||
before
|
string | ||
after
|
string |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"addresses": [
{
"assetId": "<string>",
"address": "<string>",
"description": "<string>",
"tag": "<string>",
"type": "<string>",
"customerRefId": "<string>",
"addressFormat": "SEGWIT",
"legacyAddress": "<string>",
"enterpriseAddress": "<string>",
"bip44AddressIndex": "<integer>",
"userDefined": "<boolean>"
},
{
"assetId": "<string>",
"address": "<string>",
"description": "<string>",
"tag": "<string>",
"type": "<string>",
"customerRefId": "<string>",
"addressFormat": "LEGACY",
"legacyAddress": "<string>",
"enterpriseAddress": "<string>",
"bip44AddressIndex": "<integer>",
"userDefined": "<boolean>"
}
],
"paging": {
"before": "<string>",
"after": "<string>"
}
} |
ENDPOINTS