GET api/Product/GetFinalProductImages?size={size}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| size | string |
Default value is S |
Body Parameters
None.
Response Information
Resource Description
Collection of FinalProductImage| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | integer |
None. |
|
| ImageName | string |
None. |
|
| ImageBase64 | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProductId": 2,
"ImageName": "sample string 7",
"ImageBase64": null
},
{
"ProductId": 2,
"ImageName": "sample string 7",
"ImageBase64": null
}
]
application/xml, text/xml
Sample:
<ArrayOfFinalProductImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.Plugin.ApiServices.DTO.Product">
<FinalProductImage>
<ProductId>2</ProductId>
<Size>sample string 1</Size>
</FinalProductImage>
<FinalProductImage>
<ProductId>2</ProductId>
<Size>sample string 1</Size>
</FinalProductImage>
</ArrayOfFinalProductImage>