v1
latestOpenAPI 3.0.12026-07-24310590875.6 KBinvoices
Create an invoice
Create a new invoice.
See Invoices in the Guides section for more information, sample requests, and responses.
post/v3/invoices
Headers
sessionIdstring nullable
API session ID generated with /v3/login
Example:{{session_id}}
devKeystring nullable
Developer key generated with your BILL developer account
Example:{{developer_key}}
Request body
Example request
{
"customer": {
"id": "{{customer_id}}"
},
"invoiceLineItems": [
{
"quantity": 2,
"description": "Classic extreme drum sticks",
"price": 14.99
},
{
"quantity": 1,
"description": "Metal guitar picks (5-pack)",
"price": 50
}
],
"invoiceNumber": "202602",
"dueDate": "2026-12-31",
"processingOptions": {
"sendEmail": false
}
}Response
Create an invoice response