Get status transaction

The "Get transaction status" operation allows users to retrieve detailed information about the current status of a financial transaction carried out on the platform.

GET https://api.digitalpaye.com/v1/transaction/{{reference}}

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <AccessToken>

X-Environment

Production

{
    "statusCode": 200,
    "message": "Successful",
    "data": {
        "ref": "GJ948M5X6V",
        "transactionId": "DIGITAL-79110123118182",
        "currency": "XOF",
        "amount": "500",
        "fees": "7.5",
        "amountReceive": "500",
        "amountTotal": "507.5",
        "phone": "0777101308",
        "status": "SUCCESSFUL",
        "typeTransaction": "transfer",
        "operator": "WAVE_MONEY_CI",
        "createdAt": "2024-10-11T07:12:44.000Z",
        "customer": {
            "id": "26b35534-3165-4143-8fff-ec2f70bb430c",
            "lastName": "GUEI",
            "firstName": "HELIE",
            "email": "[email protected]",
            "phoneNumber": "0777101308",
            "address": {
                "countryCode": "CI",
                "city": "Abidjan",
                "streetAddress": "Plateau Cocody"
            },
            "createdAt": "2024-10-11T07:07:59.000Z"
        }
    }
}

Last updated