GET api/Extreme/IsEligibleForFreeTour?bookingConfirmationCode={bookingConfirmationCode}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
bookingConfirmationCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
EligibleForTourResponseName | Description | Type | Additional information |
---|---|---|---|
maxPax | integer |
None. |
|
pickUpPlace | integer |
None. |
|
tourName | string |
None. |
|
bokunActivityId | integer |
None. |
|
freeTourReason | FreeTourReason |
None. |
|
confirmationCode | string |
None. |
|
Status | ResultStatus |
None. |
|
Message | string |
None. |
|
Id | globally unique identifier |
None. |
|
IdInt | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "maxPax": 1, "pickUpPlace": 2, "tourName": "sample string 3", "bokunActivityId": 4, "freeTourReason": 0, "confirmationCode": "sample string 5", "Status": 0, "Message": "sample string 6", "Id": "99ca95db-977b-453d-9cd2-80d80673bafc", "IdInt": 7 }
application/xml, text/xml
Sample:
<EligibleForTourResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Status>NOT_FOUND</Status> <Message>sample string 6</Message> <Id>99ca95db-977b-453d-9cd2-80d80673bafc</Id> <IdInt>7</IdInt> <maxPax>1</maxPax> <pickUpPlace>2</pickUpPlace> <tourName>sample string 3</tourName> <bokunActivityId>4</bokunActivityId> <freeTourReason>TourCancelled</freeTourReason> <confirmationCode>sample string 5</confirmationCode> </EligibleForTourResponse>