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. |
|
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": "utUPbTfl2kyOi+fN3aVUiw==", "pluGuid": "6d0fd5ba-e537-4cda-8e8b-e7cddda5548b", "supplierIdentifier": "wQ0XB4DH5ES84o2oeTubvg==", "supplierGuid": "07170dc1-c780-44e4-bce2-8da8793b9bbe", "price": 2, "cost": 3, "cartonCost": 4 }
application/xml, text/xml
Sample:
<ProductFastPricingChange xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://gapsolutions.com.au/schema/ezimanager"> <CartonCost>4</CartonCost> <Cost>3</Cost> <PLUG_UID>utUPbTfl2kyOi+fN3aVUiw==</PLUG_UID> <PluGuid>6d0fd5ba-e537-4cda-8e8b-e7cddda5548b</PluGuid> <Price>2</Price> <SupplierGuid>07170dc1-c780-44e4-bce2-8da8793b9bbe</SupplierGuid> <SupplierIdentifier>wQ0XB4DH5ES84o2oeTubvg==</SupplierIdentifier> </ProductFastPricingChange>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.