Get Crypto Deposits

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

GET / crypto-deposits

The response should include the following query parameters to filter :

country, currency, status, date_from, date_to

//https://api.tumapay.com/fiat-transaction-remits?country=KEN&currency=KES

Headers

Name
Value

Token

<token>

Response

{
    "success": true,
    "status_code": 200,
    "message": "Crypto deposits fetched successfully",
    "data": [
        {
            "currency_code": "KES",
            "transaction_code": "GCRGEFBDPC",
            "amount": 12,
            "crypto_address": null,
            "transaction_status": "Pending"
        },
    ]
}

Last updated