Get withdraw methods
POST/0/private/WithdrawMethods
Retrieve a list of withdrawal methods available for a specified vault.
Request
Header Parameters
Possible values: >= 12 characters
and <= 19 characters
, Value must match regular expression (^V[A-Z2-7]{12}[ACEGIKMOQSUWY246]$|AA[A-Z0-9]{2} ?[A-Z0-9]{4} ?[A-Z0-9]{4} ?[A-Z0-9]{4})
Vault ID or Vault IIBAN
- application/json
Body
required
Nonce used in construction of API-Sign
header
Possible values: non-empty
and <= 16 characters
Filter by asset
Possible values: [custody
]
Default value: currency
Filter by asset class
Filter by network
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- Array [
- string
- integer
- number
- string
- integer
- number
- ]
- ]
error object[]required
Possible values: [E
, W
]
API error severity.
result object[]nullable
Possible values: non-empty
and <= 16 characters
Name of the asset
Id of the withdrawal method
Name of the withdrawal method
Id of the blockchain/network of the method
The blockchain/network of the method
Minimum that can be withdrawn right now
limits object[]nullable
Limits that are applicable for the user associated with the funding method
The type of the limit that is applicable for the user
Brief description of the limit type
limits objectrequired
Maximum and remaining limit a user is allowed for each rolling window
property name* object
remaining object required
Remaining limit the user has
string
integer
number
maximum object required
Maximum limit the user is allowed
string
integer
number
fee objectnullable
The fees associated with this method
Possible values: [currency
, forex
, equity
, equitypair
, nft
, volume
]
The asset class for the fee
Possible values: non-empty
and <= 16 characters
The asset for the fee
The fee amount
The percentage rate of the fee applied to an amount.
{
"error": [
{
"severity": "E",
"errorClass": "string",
"type": "string",
"errorMessage": "string"
}
],
"result": [
{
"asset": "string",
"method_id": "string",
"method": "string",
"network_id": "string",
"network": "string",
"minimum": "string",
"limits": [
{
"limit_type": "string",
"description": "string",
"limits": {}
}
],
"fee": {
"aclass": "currency",
"asset": "string",
"fee": "string",
"fee_percentage": "string"
}
}
]
}