Change Cryptocurrency Wallet Address
POST/api/v1/crypto/address/change
Changes the cryptocurrency wallet address for a specified coin and network.
Request
- application/json
Body
required
label Label
An optional label for the cryptocurrency wallet.
network Networkrequired
The blockchain network of the cryptocurrency wallet.
coin Coinrequired
The type of cryptocurrency for the wallet.
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
address Addressrequired
The generated address for the cryptocurrency wallet.
label Label
The label associated with the cryptocurrency wallet, if any.
network Network
The network of the cryptocurrency wallet.
coin Coin
The type of cryptocurrency associated with the wallet.
{
"address": "string",
"label": "string",
"network": "string",
"coin": "string"
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD1
- MOD2
- ]
- ]
detail object[]
loc object[]required
anyOf
string
integer
msg Messagerequired
type Error Typerequired
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...