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": "YSH7lhxcG0K5cK/SFUYxnQ==",
"pluGuid": "96fb2161-5c1c-421b-b970-afd21546319d",
"supplierIdentifier": "MWq0Y9i6c0WJPwerDGUY7Q==",
"supplierGuid": "63b46a31-bad8-4573-893f-07ab0c6518ed",
"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>YSH7lhxcG0K5cK/SFUYxnQ==</PLUG_UID>
<PluGuid>96fb2161-5c1c-421b-b970-afd21546319d</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>63b46a31-bad8-4573-893f-07ab0c6518ed</SupplierGuid>
<SupplierIdentifier>MWq0Y9i6c0WJPwerDGUY7Q==</SupplierIdentifier>
</ProductFastPricingChange>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.