POST api/store/{storeID}/product/{id}/fastPricing
Update product pricing
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| storeID |
Store to save product at |
integer |
Required |
| id |
Product identifier |
globally unique identifier |
Required |
Body Parameters
Product model to save
ProductFastPricingChange| Name | Description | Type | Additional information |
|---|---|---|---|
| PLUG_UID | Collection of byte |
None. |
|
| PluGuid | globally unique identifier |
None. |
|
| SupplierIdentifier | Collection of byte |
Deprecated. |
|
| SupplierGuid | globally unique identifier |
Deprecated. |
|
| StoreID | integer |
None. |
|
| StoreIDs | Collection of integer |
None. |
|
| Price |
The new price of the product |
integer |
None. |
| Cost |
The new cost of the product |
integer |
None. |
| CartonCost |
The new carton cost of the product |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"pluG_UID": "LGq1YTpKA0qofqYB3t/upQ==",
"pluGuid": "61b56a2c-4a3a-4a03-a87e-a601dedfeea5",
"supplierIdentifier": "iVq0J6EUwkSTQilZES05Zw==",
"supplierGuid": "27b45a89-14a1-44c2-9342-2959112d3967",
"storeID": 2,
"storeIDs": [
1,
2
],
"price": 3,
"cost": 4,
"cartonCost": 5
}
application/xml, text/xml
Sample:
<ProductFastPricingChange xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://gapsolutions.com.au/schema/ezimanager">
<CartonCost>5</CartonCost>
<Cost>4</Cost>
<PLUG_UID>LGq1YTpKA0qofqYB3t/upQ==</PLUG_UID>
<PluGuid>61b56a2c-4a3a-4a03-a87e-a601dedfeea5</PluGuid>
<Price>3</Price>
<StoreID>2</StoreID>
<StoreIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</StoreIDs>
<SupplierGuid>27b45a89-14a1-44c2-9342-2959112d3967</SupplierGuid>
<SupplierIdentifier>iVq0J6EUwkSTQilZES05Zw==</SupplierIdentifier>
</ProductFastPricingChange>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.