Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Invoice UUID
Query Parameters
Include line items in response
Include metadata in response
{
"invoice": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"invoice_number": "<string>",
"description": "<string>",
"status": "draft",
"party_type": "receiver",
"due_date": "2023-11-07T05:31:56Z",
"currency": "<string>",
"iban": "<string>",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name_from": "<string>",
"address_from": "<string>",
"zip_from": "<string>",
"city_from": "<string>",
"country_from": "<string>",
"name_to": "<string>",
"address_to": "<string>",
"zip_to": "<string>",
"city_to": "<string>",
"country_to": "<string>",
"subtotal": 123,
"shipping": 123,
"discount": 123,
"vat": 123,
"total": 123,
"created_at": "2023-11-07T05:31:56Z",
"metadata": {}
},
"items": [
"<any>"
]
}
Retrieve complete invoice details including line items
{
"invoice": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"invoice_number": "<string>",
"description": "<string>",
"status": "draft",
"party_type": "receiver",
"due_date": "2023-11-07T05:31:56Z",
"currency": "<string>",
"iban": "<string>",
"customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name_from": "<string>",
"address_from": "<string>",
"zip_from": "<string>",
"city_from": "<string>",
"country_from": "<string>",
"name_to": "<string>",
"address_to": "<string>",
"zip_to": "<string>",
"city_to": "<string>",
"country_to": "<string>",
"subtotal": 123,
"shipping": 123,
"discount": 123,
"vat": 123,
"total": 123,
"created_at": "2023-11-07T05:31:56Z",
"metadata": {}
},
"items": [
"<any>"
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Invoice UUID
Include line items in response
Include metadata in response