GET api/Mobile?checkin={checkin}&checkout={checkout}&unitID={unitID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| checkin | date |
Required |
|
| checkout | date |
Required |
|
| unitID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
QuoteMobile| Name | Description | Type | Additional information |
|---|---|---|---|
| Days | integer |
None. |
|
| Total | decimal number |
None. |
|
| TotalAirbnb | decimal number |
None. |
|
| TotalVRBO | decimal number |
None. |
|
| TotalTripAdvisor | decimal number |
None. |
|
| LinkAirbnb | string |
None. |
|
| LinkVRBO | string |
None. |
|
| LinkTripAdvisor | string |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Days": 1,
"Total": 2.0,
"TotalAirbnb": 3.0,
"TotalVRBO": 4.0,
"TotalTripAdvisor": 5.0,
"LinkAirbnb": "sample string 6",
"LinkVRBO": "sample string 7",
"LinkTripAdvisor": "sample string 8",
"ErrorMessage": "sample string 9"
}
application/xml, text/xml
Sample:
<QuoteMobile xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Days>1</Days> <Total>2</Total> <TotalAirbnb>3</TotalAirbnb> <TotalVRBO>4</TotalVRBO> <TotalTripAdvisor>5</TotalTripAdvisor> <LinkAirbnb>sample string 6</LinkAirbnb> <LinkVRBO>sample string 7</LinkVRBO> <LinkTripAdvisor>sample string 8</LinkTripAdvisor> <ErrorMessage>sample string 9</ErrorMessage> </QuoteMobile>