Callback

Welcome to the callback page, here you will find all the necessary information to get your payments callbacks from PayRouter.

1. What is Callback

The callback is the mechanism used to notify the merchant about the status of the payment. It allows the merchant to receive information about the status of the payment and to take appropriate action.

1.2. How it works

Every time a payment is processed, a callback is sent to the merchant. The callback contains the status of the payment and the details of the payment.

To receive the callback, you must set up an Api endpoint as the same as the one you provided when you created the transaction. Our system will send the callback to your endpoint using the HTTP POST method and the content type application/json and the body of the request will contain the details of the payment.

1.3. Callaback body structure

The callback body is a JSON object that contains the following fields:

{
    "id": "8deb3cf5-ecca-4cd8-93de-08e1287d2716", 
    "amount": "100.0", 
    "currency": "usd", 
    "customer_number": "0812345678", 
    "operation": "debit", 
    "transaction_reference": "test0001", 
    "px_reference": "PXbe2093311b794b13902cb4d352e3821e", 
    "callback_url": "https://yourdomain.com/callback", 
    "service": "vodacom", 
    "telecom_reference": "BIQ43SEKZK4", 
    "telecom_status_code": "2006", 
    "telecom_status_description": "Balance insufficient.", 
    "transaction_status": "Failed", 
    "transaction_status_code": "400000", 
    "transaction_status_description": "3", 
    "status_code": null, 
    "status_description": null, 
    "sent_description": null, 
    "created_at": "2024-09-26T06:10:42.322270+01:00", 
    "updated_at": "2024-09-26T06:10:42.377"
}

When you receive the callback, you should check the status of the payment and take appropriate action. for example, if the payment is successful, you should update your database with the payment details.

For more information about this documrntation, please contact (email) our support team support@payrouter.io