Find all invoices by account ID
GET/invoices/account/:account_id
Find all invoices by account ID
Request
Path Parameters
Unique identifier of the account
Header Parameters
Sub-account identifier required for all requests
Responses
- 200
List of invoices
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
invoices
object[]
required
List of invoices
Unique identifier for the invoice
Sequential ID of the invoice
Invoice number
Date when the invoice was issued
Type of the invoice
Currency used for the invoice
Total fees amount in cents
Total taxes amount in cents
Total discounts amount in cents
Total credits amount in cents
Total amount in cents without taxes
Total amount in cents with taxes
Total amount in cents
Prepaid amount in cents
Currency
VAT Currency
Credit amount currency
Total amount currency
Total amount in cents
Credit amount in cents
VAT amount in cents
Sub total amount in cents without taxes
Sub total amount in cents with taxes
meta
object
required
Current page number
Next page number, if available
Previous page number, if available
Total number of pages available
Total number of items available
{
"invoices": [
{
"invoice_id": "8bb66aff-41c5-41c6-a69f-18efd7c9e155",
"sequential_id": 1,
"number": "RIB-6B6B-294-001",
"issuing_date": "2024-04-18",
"invoice_type": "subscription",
"currency": "EUR",
"fees_amount_cents": 0,
"taxes_amount_cents": 0,
"coupons_amount_cents": 0,
"credit_notes_amount_cents": 0,
"sub_total_excluding_taxes_amount_cents": 0,
"sub_total_including_taxes_amount_cents": 0,
"total_amount_cents": 0,
"prepaid_credit_amount_cents": 0,
"amount_currency": 0,
"vat_amount_currency": 0,
"credit_amount_currency": 0,
"total_amount_currency": 0,
"amount_cents": 0,
"credit_amount_cents": 0,
"vat_amount_cents": 0,
"sub_total_vat_excluded_amount_cents": 0,
"sub_total_vat_included_amount_cents": 0
}
],
"meta": {
"current_page": 1,
"next_page": null,
"prev_page": null,
"total_pages": 1,
"total_count": 1
}
}