Client billing
Payment receipt
Confirm a payment with the paid items, the payment method, and a paid stamp.
Use this after a customer pays in store or online.

TypeDocuments
File typesPDF
SourceMade by thirds.ai with sample names and values.
LicenceFree to copy and use in your own templates
Your data
See the fields before you copy.
Your copy starts with these sample values. Change any of them.
{
"business_name": "Summit Outdoor",
"business_address": "14 Ridge Road, Queenstown",
"business_email": "shop@summit.example",
"customer_name": "Amara Osei",
"customer_email": "amara@example.com",
"receipt_number": "R-88213",
"paid_on": "2026-09-06",
"payment_method": "Visa ending 4417",
"stamp": "Paid",
"items": [
{
"description": "Ridgeline 2-person tent",
"quantity": 1,
"amount": 449
},
{
"description": "Trail pack 38 L",
"quantity": 1,
"amount": 189
},
{
"description": "Wool hiking socks",
"quantity": 3,
"amount": 66
}
],
"subtotal": 704,
"tax_label": "GST 15%",
"tax": 105.6,
"total": 809.6,
"note": "Thank you for your order. Bring this receipt for returns within 30 days.",
"footer": "Summit Outdoor Ltd. Keep this receipt for your records."
}Use it your way
Render the same template on the web, by API, or through MCP.
curl https://thirds.ai/v1/pdf \
-H "Authorization: Bearer $THIRDS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"template_id":"tpl_your_copy","version":1,"data":{"business_name":"Summit Outdoor","business_address":"14 Ridge Road, Queenstown","business_email":"shop@summit.example","customer_name":"Amara Osei","customer_email":"amara@example.com","receipt_number":"R-88213","paid_on":"2026-09-06","payment_method":"Visa ending 4417","stamp":"Paid","items":[{"description":"Ridgeline 2-person tent","quantity":1,"amount":449},{"description":"Trail pack 38 L","quantity":1,"amount":189},{"description":"Wool hiking socks","quantity":3,"amount":66}],"subtotal":704,"tax_label":"GST 15%","tax":105.6,"total":809.6,"note":"Thank you for your order. Bring this receipt for returns within 30 days.","footer":"Summit Outdoor Ltd. Keep this receipt for your records."}}'{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "render",
"arguments": {
"output": "pdf",
"idempotency_key": "payment-receipt-1",
"request": {
"template_id": "tpl_your_copy",
"version": 1,
"data": {
"business_name": "Summit Outdoor",
"business_address": "14 Ridge Road, Queenstown",
"business_email": "shop@summit.example",
"customer_name": "Amara Osei",
"customer_email": "amara@example.com",
"receipt_number": "R-88213",
"paid_on": "2026-09-06",
"payment_method": "Visa ending 4417",
"stamp": "Paid",
"items": [
{
"description": "Ridgeline 2-person tent",
"quantity": 1,
"amount": 449
},
{
"description": "Trail pack 38 L",
"quantity": 1,
"amount": 189
},
{
"description": "Wool hiking socks",
"quantity": 3,
"amount": 66
}
],
"subtotal": 704,
"tax_label": "GST 15%",
"tax": 105.6,
"total": 809.6,
"note": "Thank you for your order. Bring this receipt for returns within 30 days.",
"footer": "Summit Outdoor Ltd. Keep this receipt for your records."
}
}
}
}
}