Return authorization
Pack 03 · Logistics · A4
A return authorisation that serves the customer and warehouse in one artifact. It makes the authorised scope visible on the outer carton and preserves inspection controls inside.
- RMA expiry and return routing
- Item-level reason and declared condition
- Expected refund and disposition
- Customer and warehouse instructions
Example data
The data payload this template expects. Generate return authorization PDFs by POSTing a shape like this to /v1/generate.
sample_data.json
{
"rma_number": "RMA-64028",
"order_number": "SO-103771",
"expires_at": "2026-08-08",
"currency": "USD",
"disposition": "Inspect / refund",
"return_method": "Carrier drop-off",
"label_status": "Prepaid",
"expected_refund": 142.8,
"merchant": {
"name": "Fern & Field"
},
"customer": {
"name": "Dara Singh",
"address": "2203 North 47th Street, Seattle, WA",
"email": "dara@samplemail.example"
},
"return_to": {
"name": "Fern & Field Returns",
"address": "6125 Basin Avenue, Portland, OR 97217",
"dock": "R-3"
},
"items": [
{
"line": "01",
"description": "Stoneware planter · large",
"sku": "STN-PL-L-01",
"quantity": 1,
"reason": "Cracked on arrival",
"condition": "Unused / damaged"
},
{
"line": "02",
"description": "Linen tool wrap · moss",
"sku": "LIN-TW-M-09",
"quantity": 1,
"reason": "Colour mismatch",
"condition": "Unused / tags on"
}
],
"instructions": "Pack each item securely in the original packaging where possible. Remove or cover earlier carrier labels. Refund is released after warehouse inspection."
}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":{"rma_number":"RMA-64028","order_number":"SO-103771","expires_at":"2026-08-08","currency":"USD","disposition":"Inspect / refund","return_method":"Carrier drop-off","label_status":"Prepaid","expected_refund":142.8,"merchant":{"name":"Fern & Field"},"customer":{"name":"Dara Singh","address":"2203 North 47th Street, Seattle, WA","email":"dara@samplemail.example"},"return_to":{"name":"Fern & Field Returns","address":"6125 Basin Avenue, Portland, OR 97217","dock":"R-3"},"items":[{"line":"01","description":"Stoneware planter · large","sku":"STN-PL-L-01","quantity":1,"reason":"Cracked on arrival","condition":"Unused / damaged"},{"line":"02","description":"Linen tool wrap · moss","sku":"LIN-TW-M-09","quantity":1,"reason":"Colour mismatch","condition":"Unused / tags on"}],"instructions":"Pack each item securely in the original packaging where possible. Remove or cover earlier carrier labels. Refund is released after warehouse inspection."}}'Sign up to seed this template and get its template_id.
Related templates

Packing slip
Warehouse packing slip with route, carrier, pick checks, bins, packed counts and verification.

A6 shipping label
True A6 carrier label with sort route, recipient, package data and machine-readable tracking block.

Delivery note
Proof-of-delivery document with vehicle, driver, receiving quantities, conditions and signature.