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