GET api/EcomSync/get_item_image/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResultModelOfListOfProductImageModel
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

Message

string

None.

Data

Collection of ProductImageModel

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "Message": "sample string 2",
  "Data": [
    {
      "Code": 1,
      "Path": "sample string 2",
      "Idx": 3,
      "Name": "sample string 4",
      "CloudId": 5,
      "ProductCloudId": 6
    },
    {
      "Code": 1,
      "Path": "sample string 2",
      "Idx": 3,
      "Name": "sample string 4",
      "CloudId": 5,
      "ProductCloudId": 6
    }
  ]
}

application/xml, text/xml

Sample:
<ResultModelOfArrayOfProductImageModelZvxXgZyN xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebStoreAPI.Models">
  <Data>
    <ProductImageModel>
      <CloudId>5</CloudId>
      <Code>1</Code>
      <Idx>3</Idx>
      <Name>sample string 4</Name>
      <Path>sample string 2</Path>
      <ProductCloudId>6</ProductCloudId>
    </ProductImageModel>
    <ProductImageModel>
      <CloudId>5</CloudId>
      <Code>1</Code>
      <Idx>3</Idx>
      <Name>sample string 4</Name>
      <Path>sample string 2</Path>
      <ProductCloudId>6</ProductCloudId>
    </ProductImageModel>
  </Data>
  <Message>sample string 2</Message>
  <ResponseCode>1</ResponseCode>
</ResultModelOfArrayOfProductImageModelZvxXgZyN>