GET api/ProductPhoto?productId={productId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| productId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProductPhotoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ImageId | globally unique identifier |
None. |
|
| OrgImage | Collection of byte |
None. |
|
| ProductId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ImageId": "17164c55-0367-4638-a049-c517ec1b3459",
"OrgImage": "QEA=",
"ProductId": "5118bd20-9edc-4d0d-8aea-ed13fcc2d482"
},
{
"ImageId": "17164c55-0367-4638-a049-c517ec1b3459",
"OrgImage": "QEA=",
"ProductId": "5118bd20-9edc-4d0d-8aea-ed13fcc2d482"
}
]
application/xml, text/xml
Sample:
<ArrayOfProductPhotoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRetail.Helpers">
<ProductPhotoModel>
<ImageId>17164c55-0367-4638-a049-c517ec1b3459</ImageId>
<OrgImage>QEA=</OrgImage>
<ProductId>5118bd20-9edc-4d0d-8aea-ed13fcc2d482</ProductId>
</ProductPhotoModel>
<ProductPhotoModel>
<ImageId>17164c55-0367-4638-a049-c517ec1b3459</ImageId>
<OrgImage>QEA=</OrgImage>
<ProductId>5118bd20-9edc-4d0d-8aea-ed13fcc2d482</ProductId>
</ProductPhotoModel>
</ArrayOfProductPhotoModel>