GET api/Mobile/FeaturedUnitsList?loginId={loginId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| loginId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FeaturedUnit| Name | Description | Type | Additional information |
|---|---|---|---|
| UnitId | integer |
None. |
|
| Rooms | integer |
None. |
|
| Bathrooms | decimal number |
None. |
|
| ResortName | string |
None. |
|
| Sleeps | integer |
None. |
|
| Name | string |
None. |
|
| ImagePath | string |
None. |
|
| FromDisney | decimal number |
None. |
|
| ResortID | integer |
None. |
|
| ResortStars | integer |
None. |
|
| Status | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UnitId": 1,
"Rooms": 2,
"Bathrooms": 3.0,
"ResortName": "sample string 4",
"Sleeps": 5,
"Name": "sample string 6",
"ImagePath": "sample string 7",
"FromDisney": 8.0,
"ResortID": 9,
"ResortStars": 10,
"Status": "sample string 11"
},
{
"UnitId": 1,
"Rooms": 2,
"Bathrooms": 3.0,
"ResortName": "sample string 4",
"Sleeps": 5,
"Name": "sample string 6",
"ImagePath": "sample string 7",
"FromDisney": 8.0,
"ResortID": 9,
"ResortStars": 10,
"Status": "sample string 11"
}
]
application/xml, text/xml
Sample:
<ArrayOfFeaturedUnit xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FeaturedUnit>
<UnitId>1</UnitId>
<Rooms>2</Rooms>
<Bathrooms>3</Bathrooms>
<ResortName>sample string 4</ResortName>
<Sleeps>5</Sleeps>
<Name>sample string 6</Name>
<ImagePath>sample string 7</ImagePath>
<FromDisney>8</FromDisney>
<ResortID>9</ResortID>
<ResortStars>10</ResortStars>
<Status>sample string 11</Status>
</FeaturedUnit>
<FeaturedUnit>
<UnitId>1</UnitId>
<Rooms>2</Rooms>
<Bathrooms>3</Bathrooms>
<ResortName>sample string 4</ResortName>
<Sleeps>5</Sleeps>
<Name>sample string 6</Name>
<ImagePath>sample string 7</ImagePath>
<FromDisney>8</FromDisney>
<ResortID>9</ResortID>
<ResortStars>10</ResortStars>
<Status>sample string 11</Status>
</FeaturedUnit>
</ArrayOfFeaturedUnit>