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": [
"3036f3b1-6fce-435a-884b-943652e538be",
"06a1cb10-241f-4244-81b9-3cb3ce2df4df"
],
"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>3036f3b1-6fce-435a-884b-943652e538be</d2p1:guid>
<d2p1:guid>06a1cb10-241f-4244-81b9-3cb3ce2df4df</d2p1:guid>
</Data>
<ErrorMessage>sample string 2</ErrorMessage>
<ErrorType>None</ErrorType>
<Message>sample string 4</Message>
<Success>true</Success>
<Total>3</Total>
</APIOrderOnlineResultOfArrayOfguiduHEDJ7Dj>