Online Order Form
Your completed fields will appear here. Load the example to see a finished document.
Take orders
Capture customer order details, delivery preferences, item selections, totals, and fulfillment notes without collecting card data.
A customer is placing an order for products, services, catering, custom items, or recurring supplies.
Confirm availability, collect payment through a secure processor, and create a packing slip or invoice.
Check names, dates, totals, and scope. Use a secure system for sensitive details that do not belong in a simple form.
Entries are processed in this browser. We do not receive them unless you save them to a Pro account.
Your completed fields will appear here. Load the example to see a finished document.
ONLINE ORDER FORM Document version 1.0.0 Created with FreeBusinessForms.com
Prompt for AI
Copy into ChatGPT, Claude, or another assistant for a fillable version.
You are an experienced order-operations document designer for small product and service businesses. Create an online order form for products, catering, custom items, or recurring supplies. It should capture customer details, fulfillment preference, item selections, totals, and notes—without collecting card data. Payment happens through a separate secure processor. Include these sections: - Seller and buyer ([Business name], [Client or company], contacts) - Order identifiers ([Order number], [Order date], [Requested date]) - Fulfillment ([Pickup / Delivery / Shipping / Digital / Service appointment], [Delivery or shipping address]) - Line items ([Description], [Quantity], [Rate], [Amount]) plus [Subtotal], [Tax rate], [Total] - Payment status ([Not requested / Payment link sent / Paid / Deposit paid / Due on delivery]) - Special instructions ([Access], [Allergies or substitutions only if operationally required—no health records]) Do not include Social Security numbers, full bank or payment-card numbers, routing numbers, passwords, tax ID numbers, medical details, identity documents, or protected-class information. This is an operational template, not legal, tax, accounting, payroll, collections, or employment advice. Output a clean fillable template I can copy into a document and adapt. Use a professional tone, clearly labeled sections, and [bracketed] placeholders for every fill-in value. Close with a short practical review checklist.
Recommended books
Practical books that pair with this document. Links use our Amazon Associates ID.

Helps you write the order around what the customer is actually buying, not an internal SKU dump.

A fulfillment view: the form should make the next step obvious and low-friction.

Useful when the order mixes products and services and the offer needs a clear name.
Machine access
Agents can inspect and validate the same versioned fields. View JSON Schema →
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://freebusinessforms.com/schemas/online-order-form.json",
"title": "Online Order Form",
"description": "Capture customer order details, delivery preferences, item selections, totals, and fulfillment notes without collecting card data.",
"type": "object",
"additionalProperties": false,
"properties": {
"business_name": {
"title": "Your business name",
"type": "string"
},
"business_contact": {
"title": "Business contact",
"type": "string"
},
"business_email": {
"title": "Business email",
"type": "string",
"format": "email"
},
"business_phone": {
"title": "Business phone",
"type": "string"
},
"client_name": {
"title": "Client or company",
"type": "string"
},
"client_contact": {
"title": "Client contact",
"type": "string"
},
"client_email": {
"title": "Client email",
"type": "string",
"format": "email"
},
"document_number": {
"title": "Order number",
"type": "string"
},
"order_date": {
"title": "Order date",
"type": "string",
"format": "date"
},
"fulfillment_type": {
"title": "Fulfillment type",
"type": "string",
"enum": [
"Pickup",
"Delivery",
"Shipping",
"Digital delivery",
"Service appointment"
]
},
"delivery_address": {
"title": "Delivery or shipping address",
"type": "string"
},
"requested_date": {
"title": "Requested date",
"type": "string",
"format": "date"
},
"payment_status": {
"title": "Payment status",
"type": "string",
"enum": [
"Not requested",
"Payment link sent",
"Paid",
"Deposit paid",
"Due on delivery"
]
},
"tax_rate": {
"title": "Tax rate (%)",
"type": "number"
},
"special_instructions": {
"title": "Special instructions",
"type": "string"
},
"line_items": {
"title": "Line items",
"type": "array",
"items": {
"type": "object",
"required": [
"description",
"quantity",
"rate"
],
"properties": {
"description": {
"type": "string"
},
"quantity": {
"type": "number",
"minimum": 0
},
"rate": {
"type": "number",
"minimum": 0
}
}
}
}
},
"required": [
"business_name",
"client_name",
"document_number",
"order_date"
],
"x-form-version": "1.0.0"
}