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
ProductFastPricingChangeName | 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. |
|
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": "jRbgG0NBuUCTqQkOtfMhhQ==", "pluGuid": "1be0168d-4143-40b9-93a9-090eb5f32185", "supplierIdentifier": "EQRRRjJick+rPzXzxRzfxQ==", "supplierGuid": "46510411-6232-4f72-ab3f-35f3c51cdfc5", "storeID": 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>jRbgG0NBuUCTqQkOtfMhhQ==</PLUG_UID> <PluGuid>1be0168d-4143-40b9-93a9-090eb5f32185</PluGuid> <Price>3</Price> <StoreID>2</StoreID> <SupplierGuid>46510411-6232-4f72-ab3f-35f3c51cdfc5</SupplierGuid> <SupplierIdentifier>EQRRRjJick+rPzXzxRzfxQ==</SupplierIdentifier> </ProductFastPricingChange>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.