Orders
Packing slip
List the items in an order with a clear delivery address.
List the items in an order with a clear delivery address.

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": "Harbour Goods",
"order_number": "HG-2048",
"order_date": "4 September 2026",
"customer": "Sam Rivera",
"address": "12 Meadow Lane, Bristol, BS1 2AB",
"items": [
{
"name": "Everyday notebook · Ocean blue",
"quantity": 2
},
{
"name": "Weekly planner · Warm grey",
"quantity": 1
}
],
"note": "Thank you for choosing Harbour Goods."
}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":"Harbour Goods","order_number":"HG-2048","order_date":"4 September 2026","customer":"Sam Rivera","address":"12 Meadow Lane, Bristol, BS1 2AB","items":[{"name":"Everyday notebook · Ocean blue","quantity":2},{"name":"Weekly planner · Warm grey","quantity":1}],"note":"Thank you for choosing Harbour Goods."}}'{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "render",
"arguments": {
"output": "pdf",
"idempotency_key": "packing-slip-1",
"request": {
"template_id": "tpl_your_copy",
"version": 1,
"data": {
"business_name": "Harbour Goods",
"order_number": "HG-2048",
"order_date": "4 September 2026",
"customer": "Sam Rivera",
"address": "12 Meadow Lane, Bristol, BS1 2AB",
"items": [
{
"name": "Everyday notebook · Ocean blue",
"quantity": 2
},
{
"name": "Weekly planner · Warm grey",
"quantity": 1
}
],
"note": "Thank you for choosing Harbour Goods."
}
}
}
}
}