Create a new invoice
POST/invoices
Create a new invoice for a customer with optional draft status
Request
- application/json
Body
required
Invoice details
- Array [
- ]
items object[]required
Possible values: >= 3 characters
Description of the item
Possible values: >= 1
Quantity of the item
Price per unit
Due date for the invoice
Possible values: >= 3 characters
, [NGN
]
Currency code for the invoice (only NGN is supported currently)
customer objectrequired
Customer's email address
Possible values: >= 3 characters
Customer's full name
Possible values: >= 3 characters
Customer's phone number
Possible values: [percentage
, fixed
]
Type of discount to apply
Value of the discount
Possible values: <= 100
VAT percentage to apply
Additional information to add to the invoice e.g payment details, additional instructions etc
Possible values: <= 10
List of CC email addresses
Possible values: >= 3 characters
Title of the invoice
Whether to save the invoice as a draft
Responses
- 201
- 401
- 403
- 422
Invoice created successfully
- application/json
- Schema
- Example (from schema)
Schema
data object
Subtotal amount before discounts and VAT
Total amount after discounts and VAT
Discount amount applied
VAT amount
VAT percentage applied
Unique reference for the invoice
Invoice number
Creation timestamp
Whether the invoice is saved as a draft
{
"message": "Invoice created successfully",
"data": {
"subtotal": 0,
"total": 0,
"discount": 0,
"vat": 0,
"vat_percent": 0,
"reference": "string",
"invoice_number": "string",
"created_at": "2025-03-24T01:38:57.348Z",
"is_draft": true
}
}
Unauthorized
Forbidden
Validation error