Payment receipt
Pack 01 · SaaS billing · A4
A confident proof of payment for subscription customers and finance teams. The receipt foregrounds settlement status, then preserves the exact transaction and invoice trail needed for reconciliation.
- Transaction and authorisation references
- Invoice allocation ledger
- Merchant and customer identities
- Explicit account balance after settlement
Example data
The data payload this template expects. Generate payment receipt PDFs by POSTing a shape like this to /v1/generate.
sample_data.json
{
"receipt_number": "ARC-R-88420",
"invoice_number": "ARC-20481",
"paid_at": "2026-07-01T10:24:00Z",
"transaction_id": "txn_3Q8N7J9W",
"currency": "USD",
"amount": 1800,
"balance": 0,
"payment_method": "Visa •••• 1842",
"authorization_code": "A74192",
"company": {
"name": "Arcwell",
"legal_name": "Arcwell Systems, Inc.",
"address": "44 Montgomery Street, San Francisco, CA",
"tax_id": "US EIN 88-4219076"
},
"customer": {
"company": "Fathom Research",
"name": "Nadia Kim",
"email": "nadia@fathom.example",
"address": "85 Great Eastern Street, London",
"account_id": "acct_FTM_0184"
},
"allocations": [
{
"description": "Subscription invoice",
"reference": "ARC-20481",
"period": "July 2026",
"amount": 1800
}
]
}generate.sh
curl -X POST https://doclinth.com/v1/generate \
-H "Authorization: Bearer dl_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"template_id":"YOUR_TEMPLATE_ID","data":{"receipt_number":"ARC-R-88420","invoice_number":"ARC-20481","paid_at":"2026-07-01T10:24:00Z","transaction_id":"txn_3Q8N7J9W","currency":"USD","amount":1800,"balance":0,"payment_method":"Visa •••• 1842","authorization_code":"A74192","company":{"name":"Arcwell","legal_name":"Arcwell Systems, Inc.","address":"44 Montgomery Street, San Francisco, CA","tax_id":"US EIN 88-4219076"},"customer":{"company":"Fathom Research","name":"Nadia Kim","email":"nadia@fathom.example","address":"85 Great Eastern Street, London","account_id":"acct_FTM_0184"},"allocations":[{"description":"Subscription invoice","reference":"ARC-20481","period":"July 2026","amount":1800}]}}'Sign up to seed this template and get its template_id.
Related templates

Subscription invoice
Recurring SaaS invoice with plan, seats, service period, credits, tax and payment method.

Usage-based invoice
Metered billing statement with included units, measured usage, billable overage and audit trail.

Refund receipt
Traceable SaaS refund with original charge, itemised return, reason and destination timing.