money-from-bracketGet Fiat Transactions Remit

This endpoint retrieves the transaction details of a specific customer in fiat.

GET / fiat-transaction-remits

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": "FIAT transaction remits fetched successfully",
    "data": [
        {
            "transaction_code": "FC2LPVYCF0",
            "transaction_ref": null,
            "currency_code": "USD",
            "amount": 1.6078019087943,
            "full_name": null,
            "msisdn": 1234,
            "transaction_status": "Pending"
        },
    ]
}

Last updated