GET api/SalesDocumentsReceipts/{DB}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DB | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReceiptDocumentList| Name | Description | Type | Additional information |
|---|---|---|---|
| ReceiptDate | date |
None. |
|
| ReceiptID | string |
None. |
|
| Customer | string |
None. |
|
| Price | decimal number |
None. |
|
| Discount | decimal number |
None. |
|
| Gross | decimal number |
None. |
|
| Net | decimal number |
None. |
|
| Vat | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ReceiptDate": "2026-04-21T14:49:21.2822625+01:00",
"ReceiptID": "sample string 2",
"Customer": "sample string 3",
"Price": 4.0,
"Discount": 5.0,
"Gross": 6.0,
"Net": 7.0,
"Vat": 8.0
},
{
"ReceiptDate": "2026-04-21T14:49:21.2822625+01:00",
"ReceiptID": "sample string 2",
"Customer": "sample string 3",
"Price": 4.0,
"Discount": 5.0,
"Gross": 6.0,
"Net": 7.0,
"Vat": 8.0
}
]
application/xml, text/xml
Sample:
<ArrayOfReceiptDocumentList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdroitERPWebApis">
<ReceiptDocumentList>
<Customer>sample string 3</Customer>
<Discount>5</Discount>
<Gross>6</Gross>
<Net>7</Net>
<Price>4</Price>
<ReceiptDate>2026-04-21T14:49:21.2822625+01:00</ReceiptDate>
<ReceiptID>sample string 2</ReceiptID>
<Vat>8</Vat>
</ReceiptDocumentList>
<ReceiptDocumentList>
<Customer>sample string 3</Customer>
<Discount>5</Discount>
<Gross>6</Gross>
<Net>7</Net>
<Price>4</Price>
<ReceiptDate>2026-04-21T14:49:21.2822625+01:00</ReceiptDate>
<ReceiptID>sample string 2</ReceiptID>
<Vat>8</Vat>
</ReceiptDocumentList>
</ArrayOfReceiptDocumentList>