money-from-bracketGet Fiat Deposits

This endpoint retrieves the details of a fiat deposits for a specific user.

GET / fiat-transaction-deposits

The response should include the following query parameters to filter :

country, currency, status, date_from, date_to

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

Headers

Name
Value

Token

<token>

Response

{
    "success": true,
    "message": "Fiat deposits fetched successfully",
    "status_code": 200,
    "data": [
        {
            "transaction_code": "FC2LPVYCF0",
            "transaction_ref": null,
            "country_code": "CA",
            "currency_code": "USD",
            "amount": 1.6078019087943,
            "full_name": null,
            "msisdn": 1234,
            "transaction_status": "Pending"
        },
    ]
}

Last updated