Changes for page 6. GetReservationDetails

Last modified by Giorgi Mdivnishvili on 2024/07/11 10:45

From version 5.1
edited by Giorgi Mdivnishvili
on 2024/04/11 07:08
Change comment: There is no comment for this version
To version 4.1
edited by Giorgi Mdivnishvili
on 2024/04/11 06:45
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -489,68 +489,3 @@
489 489  
490 490  }
491 491  {{/success}}
492 -
493 -
494 -== Description ==
495 -
496 -
497 -|=Parameter|=Value Type|=Description
498 -|id|String|The unique identifier for the reservation, typically a UUID or similar.
499 -|rfNumber|String|The reference number for the reservation, usually generated by the system.
500 -|contactNumber|String|The contact number associated with the reservation, used for communication purposes.
501 -|agentName|String|The name of the agent who made the reservation, useful for tracking and accountability.
502 -|totalPrice|Number|The total price of the reservation, calculated based on the services and products included.
503 -|agentCommission|Number|The commission earned by the agent for this reservation, calculated as a percentage of the total price.
504 -|currency|String|The currency in which the price and commission are denominated, typically in ISO 4217 format (e.g., USD, EUR).
505 -|tourists[].id|String|The unique identifier for each tourist, typically a UUID or similar.
506 -|tourists[].gender|String|The gender of the tourist, usually 'Male', 'Female', or 'Other'.
507 -|tourists[].ageCategory|String|The age category of the tourist, such as 'Adult', 'Child', or 'Infant'.
508 -|tourists[].firstName|String|The first name of the tourist, as it appears on their passport.
509 -|tourists[].lastName|String|The last name of the tourist, as it appears on their passport.
510 -|tourists[].birthDate|String (Date)|The birth date of the tourist, typically in ISO 8601 format (YYYY-MM-DD).
511 -|tourists[].passportNumber|String|The passport number of the tourist, as it appears on their passport.
512 -|tourists[].passportExpiryDate|String (Date)|The expiry date of the tourist's passport, typically in ISO 8601 format (YYYY-MM-DD).
513 -|tourists[].citizenshipCountryCode|String|The ISO 3166-1 alpha-2 code of the tourist's country of citizenship (e.g., US, GB).
514 -|tourists[].citizenshipCountryName|String|The full name of the tourist's country of citizenship.
515 -|tourists[].arrivalDate|String (Date)|The date of the tourist's arrival, typically in ISO 8601 format (YYYY-MM-DD).
516 -|tourists[].arrivalFlightNumber|String|The flight number for the tourist's arrival, as provided by the airline.
517 -|tourists[].arrivalTerminalCode|String|The terminal code for the tourist's arrival, as provided by the airport.
518 -|tourists[].returnDate|String (Date)|The date of the tourist's return, typically in ISO 8601 format (YYYY-MM-DD).
519 -|tourists[].returnFlightNumber|String|The flight number for the tourist's return, as provided by the airline.
520 -|tourists[].returnTerminalCode|String|The terminal code for the tourist's return, as provided by the airport.
521 -|tourists[].showReturn|Boolean|A boolean indicating whether the return information should be displayed, useful for one-way trips.
522 -|hotels[].id|String|The unique identifier for each hotel booking, typically a UUID or similar.
523 -|hotels[].hotelName|String|The name of the hotel where the booking is made.
524 -|hotels[].cityName|String|The city where the hotel is located.
525 -|hotels[].hotelClass|String|The class or rating of the hotel, such as '3-star', '4-star', '5-star', etc.
526 -|hotels[].checkInDate|String (Date)|The check-in date for the hotel booking, typically in ISO 8601 format (YYYY-MM-DD).
527 -|hotels[].checkOutDate|String (Date)|The check-out date for the hotel booking, typically in ISO 8601 format (YYYY-MM-DD).
528 -|hotels[].roomCategoryName|String|The category of the room booked, such as 'Standard', 'Deluxe', 'Suite', etc.
529 -|hotels[].placementName|String|The type of placement, such as 'DBL' for double room, 'SGL' for single room, etc.
530 -|hotels[].mealPlan|String|The meal plan for the hotel booking, such as 'RO' for Room Only, 'BB' for Bed and Breakfast, etc.
531 -|flights[].id|String|The unique identifier for each flight, typically a UUID or similar.
532 -|flights[].isArrival|Boolean|A boolean indicating whether this flight is an arrival flight, useful for distinguishing between arrival and departure flights.
533 -|flights[].touristId|String|The id of the tourist taking this flight, linking the flight to a specific tourist.
534 -|flights[].touristName|String|The name of the tourist taking this flight, useful for passenger lists.
535 -|flights[].date|String (Date)|The date and time of the flight, typically in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).
536 -|flights[].departureAirport|String|The IATA code of the airport from which the flight departs (e.g., JFK, LHR).
537 -|flights[].departureTerminal|String|The terminal from which the flight departs, as provided by the airport.
538 -|flights[].arrivalAirport|String|The IATA code of the airport at which the flight arrives (e.g., JFK, LHR).
539 -|flights[].arrivalTerminal|String|The terminal at which the flight arrives, as provided by the airport.
540 -|flights[].note|String|Any additional notes about the flight, such as 'Overnight flight', 'Meal included', etc.
541 -|transfers[].id|String|The unique identifier for each transfer, typically a UUID or similar.
542 -|transfers[].transferType|String|The type of transfer, such as 'ARRIVAL' for airport to hotel transfers, 'DEPARTURE' for hotel to airport transfers.
543 -|transfers[].vehicleName|String|The name of the vehicle used for the transfer, such as 'Private Car', 'Shared Shuttle', etc.
544 -|transfers[].touristId|String|The id of the tourist using this transfer, linking the transfer to a specific tourist.
545 -|transfers[].touristName|String|The name of the tourist using this transfer, useful for passenger lists.
546 -|transfers[].date|String (Date)|The date and time of the transfer, typically in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).
547 -|transfers[].fromTerminal|String|The terminal from which the transfer starts, as provided by the airport or hotel.
548 -|transfers[].fromCityName|String|The city from which the transfer starts.
549 -|transfers[].toHotelName|String|The hotel to which the transfer goes.
550 -|transfers[].toCityName|String|The city to which the transfer goes.
551 -|transfers[].note|String|Any additional notes about the transfer, such as 'Private transfer', 'Shared transfer', etc.
552 -|services[].id|String|The unique identifier for each service, typically a UUID or similar.
553 -|services[].serviceDate|String (Date)|The date and time of the service, typically in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ).
554 -|services[].serviceName|String|The name of the service, such as insurance in this example.
555 -|services[].touristId|String|The id of the tourist using this service, linking the service to a specific tourist.
556 -|services[].touristName|String|The name of the tourist using this service, useful for booking confirmations.