GET api/CruiseOperators
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CruiseOperatorDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CruiseCompanyName | string |
None. |
|
| logoSource | string |
None. |
|
| hasLogoImageFile | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"cruiseCompanyName": "sample string 2",
"logoSource": "sample string 3",
"hasLogoImageFile": true
},
{
"id": 1,
"cruiseCompanyName": "sample string 2",
"logoSource": "sample string 3",
"hasLogoImageFile": true
}
]
application/xml, text/xml
Sample:
<ArrayOfCruiseOperatorDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CruiseParking.Website.API.Models">
<CruiseOperatorDTO>
<CruiseCompanyName>sample string 2</CruiseCompanyName>
<Id>1</Id>
<logoSource>sample string 3</logoSource>
</CruiseOperatorDTO>
<CruiseOperatorDTO>
<CruiseCompanyName>sample string 2</CruiseCompanyName>
<Id>1</Id>
<logoSource>sample string 3</logoSource>
</CruiseOperatorDTO>
</ArrayOfCruiseOperatorDTO>