POST
api/v1/available-stock-check
Request Information
Body Parameters
CheckOrderStockRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderGUID | globally unique identifier |
None. |
|
| WareHouseId | integer |
None. |
Request Formats
application/json, text/json
{
"OrderGUID": "818c5aaa-90f3-47f2-95cc-2aeb180a1a9d",
"WareHouseId": 2
}
text/html
{"OrderGUID":"818c5aaa-90f3-47f2-95cc-2aeb180a1a9d","WareHouseId":2}
application/xml, text/xml
<CheckOrderStockRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order"> <OrderGUID>818c5aaa-90f3-47f2-95cc-2aeb180a1a9d</OrderGUID> <WareHouseId>2</WareHouseId> </CheckOrderStockRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: CheckOrderStockResponse
Response Formats
application/json, text/json
{
"Message": "sample string 1",
"Status": true
}
text/html
{"Message":"sample string 1","Status":true}
application/xml, text/xml
<CheckOrderStockResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order"> <Message>sample string 1</Message> <Status>true</Status> </CheckOrderStockResponse>
