POST catalog/products/reconcile
Reconcile products. Authorized only.
Request Information
URI Parameters
None.
Body Parameters
Maximum 250 items per request.
Collection of ProductReconcileItemName | Description | Type | Additional information |
---|---|---|---|
Reason | integer |
None. |
|
SKU | string |
None. |
|
Quantity | decimal number |
None. |
|
Cost | decimal number |
None. |
|
Price | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
[ { "Reason": 1, "SKU": "sample string 1", "Quantity": 2.0, "Cost": 1.0, "Price": 1.0 }, { "Reason": 1, "SKU": "sample string 1", "Quantity": 2.0, "Cost": 1.0, "Price": 1.0 } ]
application/xml, text/xml
Sample:
<ArrayOfProductReconcileItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IConnect.Data.Mapping.Mobile.Catalog"> <ProductReconcileItem> <Cost>1</Cost> <Price>1</Price> <Quantity>2</Quantity> <SKU>sample string 1</SKU> <Reason>1</Reason> </ProductReconcileItem> <ProductReconcileItem> <Cost>1</Cost> <Price>1</Price> <Quantity>2</Quantity> <SKU>sample string 1</SKU> <Reason>1</Reason> </ProductReconcileItem> </ArrayOfProductReconcileItem>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |