GET api/stockEntry/get-stockImages/{stockEntryId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| stockEntryId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of StockEntryImageDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| StockEntryId | integer |
None. |
|
| Image | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"StockEntryId": 1,
"Image": "sample string 2"
},
{
"Id": 1,
"StockEntryId": 1,
"Image": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStockEntryImageDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.StockEntries">
<StockEntryImageDTO>
<Id>1</Id>
<Image>sample string 2</Image>
<StockEntryId>1</StockEntryId>
</StockEntryImageDTO>
<StockEntryImageDTO>
<Id>1</Id>
<Image>sample string 2</Image>
<StockEntryId>1</StockEntryId>
</StockEntryImageDTO>
</ArrayOfStockEntryImageDTO>