List all linked tokens
GET {{baseUrl}}/tokenization/tokens
Return all linked tokens (paginated)
Body
PARAM
Key | Datatype | Required | Description |
pageCursor
|
string | Page cursor to get the next page | |
pageSize
|
string | Number of items per page, requesting more then max will return max items |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"data": [
{
"id": "<string>",
"status": "PENDING",
"type": "TOKEN_UTILITY",
"refId": "<string>",
"displayName": "<string>",
"tokenMetadata": {
"assetId": "<string>",
"name": "<string>",
"symbol": "<string>",
"networkProtocol": "<string>",
"totalSupply": "<string>",
"holdersCount": "<number>",
"type": "<string>",
"contractAddress": "<string>",
"issuerAddress": "<string>",
"testnet": "<boolean>",
"blockchain": "<string>",
"decimals": "<number>",
"vaultAccountId": "<string>"
}
},
{
"id": "<string>",
"status": "PENDING",
"type": "TOKEN_UTILITY",
"refId": "<string>",
"displayName": "<string>",
"tokenMetadata": {
"assetId": "<string>",
"name": "<string>",
"symbol": "<string>",
"networkProtocol": "<string>",
"totalSupply": "<string>",
"holdersCount": "<number>",
"type": "<string>",
"contractAddress": "<string>",
"issuerAddress": "<string>",
"testnet": "<boolean>",
"blockchain": "<string>",
"decimals": "<number>",
"vaultAccountId": "<string>"
}
}
],
"next": "<string>"
} |
ENDPOINTS