GET api/InventoryItem/GetInventoryItemIdsByMenuBook?menuBookID={menuBookID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| menuBookID | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
APIOrderOnlineResultOfListOfGuid| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of globally unique identifier |
None. |
|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| ErrorType | OrderOnlineAPIErrorType |
None. |
|
| Total | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
"df074f83-6d8e-45a9-ad00-717f37c0d515",
"d9a511c6-8736-406f-9fe0-9d69b1d23823"
],
"Success": true,
"ErrorMessage": "sample string 2",
"ErrorType": 0,
"Total": 3,
"Message": "sample string 4"
}
application/xml, text/xml
Sample:
<APIOrderOnlineResultOfArrayOfguiduHEDJ7Dj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MISA.QLNH.BE.BO">
<Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>df074f83-6d8e-45a9-ad00-717f37c0d515</d2p1:guid>
<d2p1:guid>d9a511c6-8736-406f-9fe0-9d69b1d23823</d2p1:guid>
</Data>
<ErrorMessage>sample string 2</ErrorMessage>
<ErrorType>None</ErrorType>
<Message>sample string 4</Message>
<Success>true</Success>
<Total>3</Total>
</APIOrderOnlineResultOfArrayOfguiduHEDJ7Dj>