Get Crypto Withdrawals

This endpoint retrieves the details of a specific Crypto withdrawals using the business_id of a specific user .

GET / crypto-withdrawals

The response should include the following query parameters to filter :

country, currency, status, date_from, date_to

//https://api.tumapay.com/crypto-withdrawals?country=KEN&currency=KES

Headers

Name
Value

Token

<token>

Response

{
    "success": true,
    "message": "Crypto withdrawals fetched successfully",
    "status_code": 200,
    "data": [
        {
 
            "sending_address": "0xecde9d32d10849b",
            "receiving_address": "123wrefgdbgr4231",
            "network": "Tron",
            "currency_code": "USDC",
            "transaction_code": "FC1UCM3CWT",
            "transaction_charge": 0,
            "transaction_status": "Successful"
        }
    ]
}

Last updated