POST api/PriceChanged/UpdatePriceChangeA
Request Information
URI Parameters
None.
Body Parameters
GOI_PriceChangeDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| DocNum | integer |
None. |
|
| ItemNum | integer |
None. |
|
| UPC | integer |
None. |
|
| Qty | integer |
None. |
|
| CurRetail | decimal number |
None. |
|
| CurUnits | integer |
None. |
|
| Model | integer |
None. |
|
| User | integer |
None. |
|
| AddToQue | boolean |
None. |
|
| StoreNbr | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DocNum": 1,
"ItemNum": 2,
"UPC": 3,
"Qty": 4,
"CurRetail": 5.0,
"CurUnits": 6,
"Model": 7,
"User": 8,
"AddToQue": true,
"StoreNbr": 10
}
application/xml, text/xml
Sample:
<GOI_PriceChangeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBIC_WebApi.Models"> <AddToQue>true</AddToQue> <CurRetail>5</CurRetail> <CurUnits>6</CurUnits> <DocNum>1</DocNum> <ItemNum>2</ItemNum> <Model>7</Model> <Qty>4</Qty> <StoreNbr>10</StoreNbr> <UPC>3</UPC> <User>8</User> </GOI_PriceChangeDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.