Creating a payout

POST/api/v1/payout
NameDefinition
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_callbackPayout 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", ... } }