GET api/v{version}/Invoices/InvoiceTotals?key={key}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
Required |
|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of InvoiceTotalOutDto| Name | Description | Type | Additional information |
|---|---|---|---|
| InvoiceNumber | string |
None. |
|
| NetAmount | decimal number |
None. |
|
| NetAmountIncludingVat | decimal number |
None. |
|
| PreInvoiceNumber | integer |
None. |
|
| RecordType | string |
None. |
|
| VatAmount | decimal number |
None. |
|
| VatCodeCode | string |
None. |
|
| VatCodeId | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"InvoiceNumber": "sample string 1",
"NetAmount": 2.0,
"NetAmountIncludingVat": 3.0,
"PreInvoiceNumber": 4,
"RecordType": "sample string 5",
"VatAmount": 6.0,
"VatCodeCode": "sample string 7",
"VatCodeId": 1
},
{
"InvoiceNumber": "sample string 1",
"NetAmount": 2.0,
"NetAmountIncludingVat": 3.0,
"PreInvoiceNumber": 4,
"RecordType": "sample string 5",
"VatAmount": 6.0,
"VatCodeCode": "sample string 7",
"VatCodeId": 1
}
]