Generate digital asset address for wallet
POST/v1/digital/addresses
Creates a digital asset address for a specific asset in a wallet. Asset identifier can be UUID, type string (BTC), or ISO 4217 code.
Request
- application/json
Body
required
Digital asset address generation data
walletId stringrequired
Wallet ID
assetId stringrequired
Asset identifier (UUID, type string like BTC, or ISO 4217 code)
userId stringrequired
User ID
userName stringrequired
User name for vault naming
Responses
- 201
- 400
- 403
- 404
Digital asset address generated successfully.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
data
object
id stringrequired
address stringrequired
memo string
assetId stringrequired
walletId stringrequired
createdAt date-timerequired
{
"traceId": "string",
"message": "string",
"data": {
"id": "string",
"address": "string",
"memo": "string",
"assetId": "string",
"walletId": "string",
"createdAt": "2024-07-29T15:51:28.071Z"
}
}
Invalid request payload. This can happen if required fields are missing or have invalid formats.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
The API key is invalid or the client does not have sufficient permissions.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
One of the specified resources was not found. Does not apply for empty result set.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
Loading...