DocMake
Order Confirmation template rendered to PDF by the DocMake engine

This preview is a real PDF render produced by the DocMake engine from the sample data on this page.

Sales

Order Confirmation

The document that closes the loop after checkout: what was ordered, where it ships, when it arrives.

Trigger it from your shop or ERP through the API the moment an order lands.

Fill-in fields

order_number Order number
order_date Order date
customer_name Customer
shipping_address Shipping address
delivery_estimate Estimated delivery
shipping_cost Shipping
total Total
support_contact Support contact
items[] Repeating list - rows expand automatically for each item

The data behind the preview

This is the exact JSON that produced the document above. Change the values, POST it to the render API, and you get your version back as DOCX or PDF. Lists grow and shrink with your data; the layout adapts.

  1. 01 Sign up free and duplicate this template into your workspace.
  2. 02 Adjust the wording and branding in the visual editor.
  3. 03 Fill it in the app, share it as a form link, or render it with the API.
sample-data.json
{
  "order_number": "ORD-2026-1187",
  "order_date": "August 8, 2026",
  "customer_name": "Acme Corp",
  "shipping_address": "540 Market Street, San Francisco, CA 94104",
  "delivery_estimate": "August 15-18, 2026",
  "items": [
    {
      "name": "Ergonomic chair",
      "qty": "2",
      "price": "$798.00"
    },
    {
      "name": "Standing desk",
      "qty": "1",
      "price": "$480.00"
    },
    {
      "name": "Desk lamp",
      "qty": "2",
      "price": "$110.00"
    }
  ],
  "shipping_cost": "$45.00",
  "total": "$1,433.00",
  "support_contact": "support@northwind.example"
}

More sales templates