Get all Informations about a voucher by his number
None.
| Name | Description | Type | Additional information |
|---|---|---|---|
| CCCode |
Code of the costcenter |
string |
None. |
| DeliveryDate |
Date of delivery |
date |
None. |
| ListName |
Name that the list should be given Decimal |
string |
None. |
| AdditionalInfo |
Additional information concerning the purchase list Decimal |
string |
None. |
| Items |
List of items |
Collection of PurchaseListItem |
None. |
{
"CCCode": "sample string 1",
"DeliveryDate": "2026-04-14T03:14:54.7312519+00:00",
"ListName": "sample string 3",
"AdditionalInfo": "sample string 4",
"Items": [
{
"PLU": 1,
"Amount": 2.1,
"Comment": "sample string 3"
},
{
"PLU": 1,
"Amount": 2.1,
"Comment": "sample string 3"
}
]
}
<PurchaseList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KOSTIFC">
<AdditionalInfo>sample string 4</AdditionalInfo>
<CCCode>sample string 1</CCCode>
<DeliveryDate>2026-04-14T03:14:54.7312519+00:00</DeliveryDate>
<Items>
<PurchaseListItem>
<Amount>2.1</Amount>
<Comment>sample string 3</Comment>
<PLU>1</PLU>
</PurchaseListItem>
<PurchaseListItem>
<Amount>2.1</Amount>
<Comment>sample string 3</Comment>
<PLU>1</PLU>
</PurchaseListItem>
</Items>
<ListName>sample string 3</ListName>
</PurchaseList>
Sample not available.
Voucher Infos
PurchaseListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success |
Was the request answered successfully |
boolean |
None. |
| Message |
Additional details |
string |
None. |
{
"Success": true,
"Message": "sample string 2"
}
<PurchaseListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KOSTIFC"> <Message>sample string 2</Message> <Success>true</Success> </PurchaseListResponse>