Crypto withdrawal

Your users can withdraw crypto from your crypto balance.

Withdrawal crypto

POST https://my.cryptopayments.pro/api/v2/withdrawal/crypto

Headers

Request Body

{"data": {
        "id": 800,
        "foreign_id": "first-withdrawal-user",
        "type": "withdrawal",
        "status": "processing",
        "amount": 0.01
    }
}

CURL example

curl -X POST https://my.cryptopayments.pro/api/v2/withdrawal/crypto \
    -H 'Content-type: application/json' \
    -H 'X-Processing-Key: zyj0tEv...FQlO5OArdQD' \
    -H 'X-Processing-Signature: 779ed1a6d19...82bbe7ad53fb19d9c' \
    -d '{"foreign_id":"first-withdrawal-user","currency":"ETH","amount":0.01,"address":"0x9b0d5e8e4125353a0ad30f6a16ece43ac0a5ee9f","memo":"your-memo"}'

Last updated