Skip to content

Receipts

Receipts are payment receipts generated automatically after every successful transaction. They are sent by email to the buyer and are accessible via the API.

Endpoints

MéthodeEndpointDescription
GET/receipts/List receipts
GET/receipts/{id}/Retrieve a receipt
POST/receipts/{id}/resend/Resend by email
GET/receipts/{id}/pdf/Download the PDF
Note

Receipts are created automatically and are read-only. Their layout is based on the visual identity configured in your settings.

Objet Receipt

ResponseResponse
json
{
  "id": "rct_xxxxxxxxxxxx",
  "object": "receipt",
  "receipt_number": "RCT-2026-00142",
  "transaction": "tx_xxxxxxxxxxxx",
  "customer": "cust_xxxx",
  "amount": 15000,
  "currency": "XAF",
  "payment_method": "mobile_money",
  "pdf_url": "https://api.sangho.ga/v1/receipts/rct_xxxx/pdf/",
  "created_at": "2026-03-01T10:05:00Z"
}