GET api/ZB_Inventory?MandantID={MandantID}&ProductNo={ProductNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| MandantID | string |
Required |
|
| ProductNo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Inventory| Name | Description | Type | Additional information |
|---|---|---|---|
| RowID | globally unique identifier |
None. |
|
| MandantID | string |
None. |
|
| fk_ProductNo | string |
None. |
|
| IsArtikel | boolean |
None. |
|
| StoragePlace | string |
None. |
|
| Note | string |
None. |
|
| CreatedBy | string |
None. |
|
| BookedBy | string |
None. |
|
| Created | date |
None. |
|
| Booked | date |
None. |
|
| StockAmount | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"RowID": "cdb23301-f6bc-42fd-a6d1-266e91a5519c",
"MandantID": "sample string 1",
"fk_ProductNo": "sample string 2",
"IsArtikel": true,
"StoragePlace": "sample string 4",
"Note": "sample string 5",
"CreatedBy": "sample string 6",
"BookedBy": "sample string 7",
"Created": "2025-12-06T05:37:57.8235568+01:00",
"Booked": "2025-12-06T05:37:57.8235568+01:00",
"StockAmount": 1.0
},
{
"RowID": "cdb23301-f6bc-42fd-a6d1-266e91a5519c",
"MandantID": "sample string 1",
"fk_ProductNo": "sample string 2",
"IsArtikel": true,
"StoragePlace": "sample string 4",
"Note": "sample string 5",
"CreatedBy": "sample string 6",
"BookedBy": "sample string 7",
"Created": "2025-12-06T05:37:57.8235568+01:00",
"Booked": "2025-12-06T05:37:57.8235568+01:00",
"StockAmount": 1.0
}
]
application/xml, text/xml
Sample:
<ArrayOfInventory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TimeSheetWebAPI.Models">
<Inventory>
<Booked>2025-12-06T05:37:57.8235568+01:00</Booked>
<BookedBy>sample string 7</BookedBy>
<Created>2025-12-06T05:37:57.8235568+01:00</Created>
<CreatedBy>sample string 6</CreatedBy>
<IsArtikel>true</IsArtikel>
<MandantID>sample string 1</MandantID>
<Note>sample string 5</Note>
<RowID>cdb23301-f6bc-42fd-a6d1-266e91a5519c</RowID>
<StockAmount>1</StockAmount>
<StoragePlace>sample string 4</StoragePlace>
<fk_ProductNo>sample string 2</fk_ProductNo>
</Inventory>
<Inventory>
<Booked>2025-12-06T05:37:57.8235568+01:00</Booked>
<BookedBy>sample string 7</BookedBy>
<Created>2025-12-06T05:37:57.8235568+01:00</Created>
<CreatedBy>sample string 6</CreatedBy>
<IsArtikel>true</IsArtikel>
<MandantID>sample string 1</MandantID>
<Note>sample string 5</Note>
<RowID>cdb23301-f6bc-42fd-a6d1-266e91a5519c</RowID>
<StockAmount>1</StockAmount>
<StoragePlace>sample string 4</StoragePlace>
<fk_ProductNo>sample string 2</fk_ProductNo>
</Inventory>
</ArrayOfInventory>