INVOICE
#INV-2024-001
Bill To
Acme Corp
123 Business Ave
New York, NY 10001
Invoice Date
March 22, 2024
Due Date
April 22, 2024
Total Due
$1,634.56
Payment Link
pay.pdfgrid.com/inv/abc123
About this template
A modern, professional invoice template perfect for freelancers and businesses. Features clean typography, automatic calculations, and payment link integration.
- Freelancers and consultants
- Small businesses
- Service providers
- Online stores
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| invoice_number | string | Yes | — | Unique invoice identifier |
| date | date | Yes | today | Invoice date |
| due_date | date | Yes | — | Payment due date |
| items | array | Yes | [] | Line items with description, quantity, rate |
| payment_link | string | No | — | Optional payment URL |
invoice_number string Required
Unique invoice identifier
date date Required
Invoice date
Default: today
due_date date Required
Payment due date
items array Required
Line items with description, quantity, rate
Default: []
payment_link string Optional
Optional payment URL
Examples
Basic invoice
pdfgrid.generate({ template: "invoice-modern", data: { invoice_number: "INV-001", ... } }) Preview
With payment link
pdfgrid.generate({ template: "invoice-modern", data: { ..., payment_link: "https://pay.example.com" } }) Preview