POST api/stockitems/qtychanged
Request Information
URI Parameters
None.
Body Parameters
QtyChangedRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | string |
None. |
|
| custcode | string |
None. |
|
| StockCode | string |
None. |
|
| nonstock | string |
None. |
|
| qty | integer |
None. |
|
| OrderType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Token": "sample string 1",
"custcode": "sample string 2",
"StockCode": "sample string 3",
"nonstock": "sample string 4",
"qty": 5,
"OrderType": "sample string 6"
}
application/xml, text/xml
Sample:
<QtyChangedRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ordering_Portal_API.Controllers"> <OrderType>sample string 6</OrderType> <StockCode>sample string 3</StockCode> <Token>sample string 1</Token> <custcode>sample string 2</custcode> <nonstock>sample string 4</nonstock> <qty>5</qty> </QtyChangedRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.