Get all invoice details
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
invoice_details| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier |
Required |
| invoice_id |
Key of invoice to which this line belongs |
globally unique identifier | |
| article_id |
Key of article on this line |
globally unique identifier | |
| article_name |
Name of article on this line |
string | |
| article_description |
Description of article on this line |
string | |
| article_code |
Code of article on this line |
string | |
| line_num |
Number of this line within the invoice |
integer | |
| quantity |
Quantity of article |
integer | |
| article_price |
Price of article |
decimal number | |
| discount |
Discount value (absolute) applied to this line |
decimal number | |
| vat_rate |
VAT ratio applied to this line |
decimal number | |
| vat_value |
Value (absolute) of VAT on this line |
decimal number | |
| total_line |
quantity*(article_price-discount+vat_value) |
decimal number | |
| article_stock_location_id |
In case of stock management enabled, the stock that has been used |
globally unique identifier | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "64e09537-54f5-4cd4-8e65-2e7c5a3c5fe3",
"invoice_id": "d3eb1799-a9f4-4901-b881-c6fd48181fb4",
"article_id": "f5289e76-5050-497d-aae7-35fe02fd3676",
"article_name": "sample string 4",
"article_description": "sample string 5",
"article_code": "sample string 6",
"line_num": 7,
"quantity": 8,
"article_price": 9.0,
"discount": 10.0,
"vat_rate": 11.0,
"vat_value": 12.0,
"total_line": 13.0,
"article_stock_location_id": "f8f603d8-20a5-4d09-8c59-316a54c79e8f",
"modified_dateutc": "2025-12-08T18:56:22.1899326+00:00"
}