Get deposit methods
POST/0/private/DepositMethods
Retrieve the available deposit funding methods for depositing a specific asset. The deposit method is required to retrieve deposit addresses using the Get Deposit Addresses API.
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
Default value: ZUSD
Possible values: [custody
]
Default value: currency
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- string
- boolean
- ]
- Array [
- ]
result object[]nullable
Name of deposit method
limit object
Maximum net amount that can be deposited right now, or false if no limit
string
boolean
Amount of fees that will be paid
Whether or not method has an address setup fee
Whether new addresses can be generated for this method.
Minimum net amount that can be deposited right now
error object[]required
Possible values: [E
, W
]
API error severity.
{
"result": [
{
"method": "string",
"limit": "string",
"fee": "string",
"fee-percentage": "string",
"address-setup-fee": "string",
"gen-address": true,
"minimum": "string"
}
],
"error": [
{
"severity": "E",
"errorClass": "string",
"type": "string",
"errorMessage": "string"
}
]
}