Delivery challan
Pack 05 · India GST · A4
A warehouse-ready delivery challan for movements where a tax invoice is not the right document. The dense routing strip and receiving block make it practical at dispatch, checkpoint and destination.
- Rule 55-aligned goods movement fields
- Vehicle and e-way bill references
- Package, quantity and HSN columns
- Consignee receipt and consignor sign-off
Example data
The data payload this template expects. Generate delivery challan PDFs by POSTing a shape like this to /v1/generate.
sample_data.json
{
"challan_number": "KL/DC/26-27/0041",
"challan_date": "2026-07-10",
"copy_mark": "Original for consignee",
"supply_type": "Job work return",
"reason": "Return after finishing",
"place_of_supply": "Maharashtra (27)",
"currency": "INR",
"consignor": {
"name": "Kite & Loom Private Limited",
"address": "Lower Parel, Mumbai 400013",
"gstin": "27AAECK4821F1ZQ"
},
"consignee": {
"name": "Saffron Dye House",
"address": "MIDC Tarapur, Palghar 401506",
"gstin": "27AAQFS6142E1ZP"
},
"transport": {
"mode": "Road",
"vehicle_number": "MH 04 LY 3186",
"eway_bill": "2110 7842 6514"
},
"items": [
{
"line": "01",
"description": "Finished linen panels",
"batch": "Batch KL-2607-S",
"hsn": "63039200",
"packages": 6,
"quantity": 84,
"unit": "pcs",
"value": 184800,
"tax_rate_label": "N/A",
"tax_amount": 0
},
{
"line": "02",
"description": "Cut fabric remnants",
"batch": "Batch KL-2607-R",
"hsn": "52083990",
"packages": 2,
"quantity": 31.5,
"unit": "m",
"value": 18900,
"tax_rate_label": "N/A",
"tax_amount": 0
},
{
"line": "03",
"description": "Blackout lining rolls",
"batch": "Batch KL-2607-B",
"hsn": "59039090",
"packages": 4,
"quantity": 10,
"unit": "rolls",
"value": 72500,
"tax_rate_label": "N/A",
"tax_amount": 0
},
{
"line": "04",
"description": "Track-system samples",
"batch": "Sample return set",
"hsn": "76109090",
"packages": 1,
"quantity": 6,
"unit": "pcs",
"value": 9600,
"tax_rate_label": "N/A",
"tax_amount": 0
}
],
"total_packages": 13,
"total_quantity": "90 pcs + 31.5 m + 10 rolls",
"total_value": 285800,
"instructions": "Job-work return only. Not for sale. Tax is not applicable to this movement. Verify batch count before unloading."
}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":{"challan_number":"KL/DC/26-27/0041","challan_date":"2026-07-10","copy_mark":"Original for consignee","supply_type":"Job work return","reason":"Return after finishing","place_of_supply":"Maharashtra (27)","currency":"INR","consignor":{"name":"Kite & Loom Private Limited","address":"Lower Parel, Mumbai 400013","gstin":"27AAECK4821F1ZQ"},"consignee":{"name":"Saffron Dye House","address":"MIDC Tarapur, Palghar 401506","gstin":"27AAQFS6142E1ZP"},"transport":{"mode":"Road","vehicle_number":"MH 04 LY 3186","eway_bill":"2110 7842 6514"},"items":[{"line":"01","description":"Finished linen panels","batch":"Batch KL-2607-S","hsn":"63039200","packages":6,"quantity":84,"unit":"pcs","value":184800,"tax_rate_label":"N/A","tax_amount":0},{"line":"02","description":"Cut fabric remnants","batch":"Batch KL-2607-R","hsn":"52083990","packages":2,"quantity":31.5,"unit":"m","value":18900,"tax_rate_label":"N/A","tax_amount":0},{"line":"03","description":"Blackout lining rolls","batch":"Batch KL-2607-B","hsn":"59039090","packages":4,"quantity":10,"unit":"rolls","value":72500,"tax_rate_label":"N/A","tax_amount":0},{"line":"04","description":"Track-system samples","batch":"Sample return set","hsn":"76109090","packages":1,"quantity":6,"unit":"pcs","value":9600,"tax_rate_label":"N/A","tax_amount":0}],"total_packages":13,"total_quantity":"90 pcs + 31.5 m + 10 rolls","total_value":285800,"instructions":"Job-work return only. Not for sale. Tax is not applicable to this movement. Verify batch count before unloading."}}'Sign up to seed this template and get its template_id.
Related templates

GST tax invoice
India-ready tax invoice with GSTIN, HSN/SAC and switchable CGST/SGST or IGST totals.

GST quotation
Commercial quotation with HSN/SAC, GST estimate, validity, delivery and acceptance terms.

Purchase order
India procurement order with GSTIN, HSN, delivery terms, tax estimate and vendor acknowledgement.