v1
latestOpenAPI 3.0.12026-07-24310590875.6 KBbills
Create multiple bills
Create multiple bills with one API request. You can create up to 100 bills with one POST /v3/bills/bulk request.
Bulk bill creation at BILL follow a set of rules.
- Successful response: In your bulk bill creation request, all your bills must be successfully created for a successful response. If any bill creation is not successful, the entire request fails and none of the bills in the request are created.
- You can create bills for multiple vendors: You can create bills for one vendor or for multiple vendors with one POST /v3/bills/bulk request.
See Bills in the Guides section for more information, sample requests, and responses.
post/v3/bills/bulk
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
[
{
"vendorId": "{{vendor_id}}",
"dueDate": "2026-12-31",
"billLineItems": [
{
"amount": 149,
"description": "USB audio interface"
},
{
"amount": 79.99,
"description": "Drum foot pedal"
}
],
"invoice": {
"invoiceNumber": "202601",
"invoiceDate": "2026-12-31"
}
}
]Response
Create multiple bills response