GET NGA/getItemsImages?conncectionStringInWebConfig={conncectionStringInWebConfig}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| conncectionStringInWebConfig | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Image| Name | Description | Type | Additional information |
|---|---|---|---|
| ImageId | integer |
None. |
|
| ItemId | integer |
None. |
|
| ItemName | string |
None. |
|
| AddedBy | string |
None. |
|
| ContentType | string |
None. |
|
| Data | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ImageId": 1,
"ItemId": 2,
"ItemName": "sample string 3",
"AddedBy": "sample string 4",
"ContentType": "sample string 5",
"Data": "QEA="
},
{
"ImageId": 1,
"ItemId": 2,
"ItemName": "sample string 3",
"AddedBy": "sample string 4",
"ContentType": "sample string 5",
"Data": "QEA="
}
]
application/xml, text/xml
Sample:
<ArrayOfngaController.Image xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NGAapi.Controllers">
<ngaController.Image>
<AddedBy>sample string 4</AddedBy>
<ContentType>sample string 5</ContentType>
<Data>QEA=</Data>
<ImageId>1</ImageId>
<ItemId>2</ItemId>
<ItemName>sample string 3</ItemName>
</ngaController.Image>
<ngaController.Image>
<AddedBy>sample string 4</AddedBy>
<ContentType>sample string 5</ContentType>
<Data>QEA=</Data>
<ImageId>1</ImageId>
<ItemId>2</ItemId>
<ItemName>sample string 3</ItemName>
</ngaController.Image>
</ArrayOfngaController.Image>