POST api/EcomSync/update_product_image
Request Information
URI Parameters
None.
Body Parameters
ProductImageModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Path | string |
None. |
|
| Idx | integer |
None. |
|
| Name | string |
None. |
|
| CloudId | integer |
None. |
|
| ProductCloudId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Code": 1,
"Path": "sample string 2",
"Idx": 3,
"Name": "sample string 4",
"CloudId": 5,
"ProductCloudId": 6
}
application/xml, text/xml
Sample:
<ProductImageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models"> <CloudId>5</CloudId> <Code>1</Code> <Idx>3</Idx> <Name>sample string 4</Name> <Path>sample string 2</Path> <ProductCloudId>6</ProductCloudId> </ProductImageModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| Message | string |
None. |
|
| Data | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"Message": "sample string 2",
"Data": "sample string 3"
}
application/xml, text/xml
Sample:
<ResultModelOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models"> <Data>sample string 3</Data> <Message>sample string 2</Message> <ResponseCode>1</ResponseCode> </ResultModelOfstring>