Creating a payout
POST/api/v1/payout
| Name | Definition |
|---|---|
| amount* | Payout amount |
| currency* | Currency code |
| order_id* | Unique ID in your system |
| address* | Destination wallet address |
| network* | Blockchain network |
| is_subtract* | Fee from balance (true) or amount (false) |
| url_callback | Payout webhook URL |
curl /api/v1/payout \
-X POST \
-H 'merchant: UUID' \
-H 'sign: SIGN' \
-d '{
"amount": "5",
"currency": "USDT",
"network": "tron",
"order_id": "wd-1",
"address": "T...",
"is_subtract": true
}'i
Response:
{ "state": 0, "result": { "uuid", "status", ... } }