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": "G/zOfYrjeUet1s6J1egbtA==", "pluGuid": "7dcefc1b-e38a-4779-add6-ce89d5e81bb4", "supplierIdentifier": "ZvAGvmnnvEubiFxJupAfXg==", "supplierGuid": "be06f066-e769-4bbc-9b88-5c49ba901f5e", "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>G/zOfYrjeUet1s6J1egbtA==</PLUG_UID> <PluGuid>7dcefc1b-e38a-4779-add6-ce89d5e81bb4</PluGuid> <Price>2</Price> <SupplierGuid>be06f066-e769-4bbc-9b88-5c49ba901f5e</SupplierGuid> <SupplierIdentifier>ZvAGvmnnvEubiFxJupAfXg==</SupplierIdentifier> </ProductFastPricingChange>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.