Reference
/- Create multiple bills in one request
List bills
Create a bill
Get bill counts by status
Get bill approvers
Get bill detail
Update a bill
Cancel a bill
Return a bill to draft
Create multiple bills in...
Security
oauth2ClientCredentials(Required scopes: bills:write)
- Mock serverhttps://developer.boyahq.com/_mock/v2/openapi/bills/create-bulk-bills
- Productionhttps://api.boyahq.com/v2/bills/create-bulk-bills
- Sandboxhttps://sandbox.api.boyahq.com/v2/bills/create-bulk-bills
curl -i -X POST \
https://developer.boyahq.com/_mock/v2/openapi/bills/create-bulk-bills \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'business_id: string' \
-H 'org_wallet_ref: string' \
-d '{
"bills": [
{
"invoice_no": "INV-001",
"invoice_amount": 12000,
"status": "draft",
"supplier": {},
"budget_owner": {},
"team": {},
"payments": [
"string"
],
"attachments": [
"string"
],
"withholding_taxes": [
"string"
],
"description": "Consulting services - June",
"due_date": "2026-06-30",
"budget": [
"string"
],
"is_draft": true,
"category": "string",
"category_code": "string",
"paid_amount": 0,
"send_on": "string",
"currency": "KES",
"wallet_currency": "KES",
"original_currency": "KES",
"tags": [
"string"
],
"fx_rate": 129.5
}
]
}'