GET v1/Products/{productId}/Image/{imageFileId}
Get the specified Product image.
Request Information
Requires Authorization!
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| productId |
The Product Id |
integer |
Required. |
| imageFileId |
The imageFileId to get. |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
An Image object.
Image
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier. |
integer |
Required |
| Filename |
Gets or sets the filename. |
string |
None. |
| Sequence |
Gets or sets the sequence. |
integer |
None. |
| Base64Data |
Gets or sets the base64 data. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Filename": "sample string 2",
"Sequence": 3,
"Base64Data": "sample string 4"
}
application/xml, text/xml
Sample:
<Image xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>1</Id> <Filename>sample string 2</Filename> <Sequence>3</Sequence> <Base64Data>sample string 4</Base64Data> </Image>