Withdraw
Creates a withdrawal request
POST /v1/account/withdrawals
Headers:
| Param | Type |
|---|---|
| apikey | string |
Parameters:
| Param | Type | Mandatory | Description |
|---|---|---|---|
| currency | string | Yes | Currency |
| address | string | Yes | Withdrawal address |
| chain | string | Yes | The chain of currency |
| amount | number | Yes | Withdrawal amount, a positive number which is a multiple of the amount precision (fees excluded) |
Request Example
{
"success": true,
"data": {
"currency": "KLV",
"address": "klv1lwv996lr5vq8p6r2gmwyxtj7567fc089y9q3dwu24l8l4g5k8husl8psu4",
"chain": "KLV",
"amount": 99999
}
}
Response:
| Param | Type | Example | Description |
|---|---|---|---|
| withdrawalId | integer | 65987 | Unique identifier |
Response Example
{
"success": true,
"data": {
"withdrawalId": 65987
}
}