Integrations GuidesChapa Receipt

Payment Receipt

Chapa provides a comprehensive receipt system that allows users to view detailed payment information and transaction receipts through a simple URL redirect.

Receipt URL Format

After a successful payment, users can access their payment receipt using the following URL format:

https://chapa.link/payment-receipt/{chapa_reference_id}

Example Receipt URL

https://chapa.link/payment-receipt/APQ1kcaiCZi2

Receipt Information

The receipt page displays comprehensive payment details including:

Payment Details

  • Reference ID: Unique transaction identifier (e.g., APQ1kcaiCZi2)
  • Payer Name: Customer’s full name
  • Phone Number: Customer’s phone number
  • Email Address: Customer’s email address
  • Payment Method: Method used for payment (e.g., telebirr, card, bank)
  • Status: Payment status Paid
  • Payment Date: Date and time of the transaction
  • Payment Reason: Purpose of the payment

Financial Information

  • Sub Total: Original payment amount
  • Charge: Transaction fee
  • Total: Final amount including fees

Merchant Information

  • Merchant Name: Business or service provider name
  • TIN: Tax Identification Number
  • Phone Number: Merchant contact number
  • Address: Merchant business address
  • Website: Merchant website

References

  • Chapa Reference: Internal Chapa reference ID
  • Merchant Reference: Your custom transaction reference
  • Bank Reference: Bank transaction reference (if applicable)

Implementation

Redirect After Payment

You can redirect users to the receipt page after a successful payment:

// After successful payment
const referenceId = response.data.reference; // Get from payment response
const receiptUrl = `https://chapa.link/payment-receipt/${referenceId}`;
window.location.href = receiptUrl;

Receipt Features

Users can print the receipt for their records by using the browser’s print function.

Download Receipt

The receipt page provides options to download the receipt in various formats.

Example Receipt

Here’s what a typical Chapa receipt looks like:

Chapa Payment Receipt

Security

  • Receipt URLs are secure and contain encrypted transaction data
  • Only authorized users can access receipt information
  • Receipts include digital signatures for authenticity verification

Support

For any issues with receipt access or questions about receipt information:

This receipt system provides a professional and comprehensive way for both merchants and customers to access and verify payment information.