Invoice endpoints
List Invoices
Retrieve all invoices associated with a booking
GET
This endpoint returns all invoices associated with a specific booking. The invoices include detailed information such as line items, tax rates, and payment status.
Response
The response includes an array of invoice objects. Each invoice contains:
- Basic invoice details (ID, number, dates)
- Status information (draft, sent, paid, void)
- Line items with pricing and tax details
- Tax rate information if applicable
- Payment and due date information
All monetary values are returned in cents. For example, $750.00 is returned as 75000.
Example Usage
Here’s an example of how to use this endpoint with curl:
Common Use Cases
- Retrieving invoice history for a booking
- Checking payment status of invoices
- Accessing detailed pricing information
- Verifying tax calculations
Authorizations
Path Parameters
ID of the booking to retrieve invoices for
Response
200
application/json
List of invoices for the booking
The unique identifier of the invoice
The human-readable invoice number
Current status of the invoice
Available options:
DRAFT
, SENT
, PAID
, VOID
When the invoice payment is due
When the invoice was issued
When the invoice was paid, if applicable
Description of the invoice
Purchase order number if provided
Additional notes on the invoice
Whether the invoice is taxable
Was this page helpful?