Wallet create
This call allows you to create a dedicated address.
Note: Due to rare timeouts for larger numbers of requests, we strongly recommend a "retry logic" to be present
Authorizations:
Request Body schema: application/json
| asset required | string <uuid> This parameter indicates the unique code that identifies the asset. |
| unique | boolean Default: false This parameter, set as |
Responses
Request samples
- Payload
{- "asset": "5a841cf2-3786-47ad-8831-36ccea9ed096",
- "unique": false
}Response samples
- 200
{- "data": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "asset": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "symbol": "string",
- "displayName": "string",
- "displaySymbol": "string",
- "exchangeSymbol": "string",
- "type": "string",
- "subType": "string",
- "token": true,
- "contract": null,
- "nativeAsset": "string",
- "decimals": 0,
- "network": "string"
}, - "address": "string",
- "tag": "string",
- "createdAt": "2019-08-24T14:15:22Z"
}
}Wallet list
List of dedicated wallets attached to the current project
Note: Due to rare timeouts for larger numbers of requests, we strongly recommend a "retry logic" to be present
Authorizations:
Responses
Response samples
- 200
{- "data": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "asset": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "symbol": "string",
- "displayName": "string",
- "displaySymbol": "string",
- "exchangeSymbol": "string",
- "type": "string",
- "subType": "string",
- "token": true,
- "contract": null,
- "nativeAsset": "string",
- "decimals": 0,
- "network": "string"
}, - "address": "string",
- "tag": "string",
- "createdAt": "2019-08-24T14:15:22Z"
}
]
}