SH Push, version 2.2 Release 2012:12

Size: px
Start display at page:

Download "SH Push, version 2.2 Release 2012:12"

Transcription

1 SH Push, version 2.2 Release 2012:12 This update of Push updates the following methods with support for release hour calendar information. SH.UpdateCalendarInformation EX.UpdateCalendarInformation SH.UpdateSuperDealCalendar EX.UpdateSuperDealCalendar SH.GetRoomTypeAvailability SH.GetSuperDealAvailability

2 Table of contents Introduction... 3 SH.GetRoomTypes... 4 SH.UpdateCalendarInformation... 6 SH.UpdateAvailability... 9 SH.StopSale SH.GetRoomTypeAvailability SH.AddSuperDealRoom SH.GetSuperDealRoomTypes SH.AddSuperDealCalendarDates SH.UpdateSuperDealCalendar SH.GetSuperDealAvailability SH.AddDiscount SH.DeleteDiscounts SH.GetDiscounts SH.GetBookings SH.GetBookingPriceBreakdown EX.GetRoomTypes EX.UpdateCalendarInformation EX.UpdateAvailability EX.StopSale EX.GetSuperDealRoomTypes EX.AddSuperDealCalendarDates EX.UpdateSuperDealCalendar EX.AddDiscount EX.DeleteDiscounts EX.GetDiscounts Sunhotels PUSH version 2.2 2

3 Introduction Overview The SH Push is available in two different versions, depending on how the inventory is connected to the Sunhotels system. The difference lies in how the items are identified in the system. For the providers using the extranet (manual loading), the ID:s are the ones from the Sunhotels system. For providers using file export/import the ID:s will be the ones provided by the provider. However, this implementation is designed differently for each implementation and any use of the functions cannot be done without assistance from Sunhotels. For providers using our extranet the functions in this document are the ones that starts with SH. For providers using file export/import the functions in this document are the ones that starts with EX. These prefix are NOT to be used calling the function, only to identify what functions to use in this documentation. SOAP / POST / GET SH Push is available using POST /GET or SOAP. The functionality will not differ depending on protocol. We have decided to expose the POST/GET and the SOAP interfaces on two different pages. Most of the documentation below will be based on the response from a GET request despite the fact that we recommend using SOAP since it s easier to understand the XML. It should however not be hard to understand how the SOAP response will work since it basically uses the same structure. Correct URL for the web service There exist two public web services that do basically the same work but are adjusted to if you want to make POST / GET / SOAP requests. POST / GET SOAP Using Sunhotels Ids /2.2/PostGet/PushWithSunHotelsId.asmx /2.2/SOAP/PushWithSunHotelsId.asmx Using Provider Ids /2.2/PostGet/PushWithProviderId.asmx /2.2/SOAP/PushWithProviderId.asmx Sunhotels PUSH version 2.2 3

4 SH.GetRoomTypes This function is used to get available room types for all or a single hotel in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/GetRoomTypes?username=[username]&password=[passw ord]&shhotelid=[hotel Id] Function inputs The GetRoomTypes function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values *username *password shhotelid The username of the provider The password of the provider The Sunhotels internal id of the hotel to get room types for. Note: leave empty to get all available room types for all hotels. Integer representing a Sunhotels hotel ID Function output Specification of output of the GetRoomTypes method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=GetRoomTypes Sunhotels PUSH version 2.2 4

5 XML output <?xml version="1.0" encoding="utf-8"?> <RoomTypeResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong.--> <StatusCode></StatusCode> <!--All hotels returned in the result--> <Hotels> <Hotel> <!--The internal Sunhotels hotel id. Can be used when only room types for one hotel is of interest--> <HotelId></HotelId> <!--The currency code used by the hotel--> <Currency></Currency> <!--The name of the hotel--> <HotelName></HotelName> <!--All room types that are available for the hotel--> <RoomTypes> <RoomType> <!--The internal Sunhotels room id--> <RoomId></RoomId> <!--The internal Sunhotels room type id--> <RoomTypeId></RoomTypeId> <!--The internal Sunhotels room group id--> <RoomGroupID></RoomGroupID> <!--The number of beds that are available for the room--> <Beds></Beds> <!--The number of extra beds that are available for the room--> <Extrabeds></Extrabeds> <!--The room type description--> <Description></Description> <!--Indicate if room is nonrefundable--> <Nonrefundable></Nonrefundable> <!--The internal room note--> <InternalRoomNote></InternalRoomNote> <!--Indicate if room has gross rates--> <GrossRates></GrossRates> <!--The room payment method(s)--> <RoomPaymentMethods> <RoomPaymentMethod Id="" Name=""/> </RoomPaymentMethods> </RoomType> </RoomTypes> </Hotel> </Hotels> </RoomTypeResponse> Sunhotels PUSH version 2.2 5

6 SH.UpdateCalendarInformation This function is used to update information (i.e. prices and availability) for a specific room. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/UpdateCalendarInformation?username=[username]&pass word=[password]&shroomid=[room id]&startdate=[start date]&enddate[end date]&price=[price]&currency=[currency code]&availability=[number of available rooms]&minimumstay=[minimum length of stay]&releasedays=[release days]&releasehour=[hour after midnight]&xbedadultrate=[extra bed adult price]&xbedchildrate=[extra bed child price]&includedboard=[included board]&breakfastadultprice=[adult breakfast price]&breakfastchildprice=[child breakfast price]&halfboardadultprice=[adult half board price]&halfboardchildprice=[child half board price]&fullboardadultprice=[adult full board price]&fullboardchildprice=[child full board price]&allincadultprice=[adult all inclusive price]& allincchildprice=[child all inclusive price]&updatesuperdealprices=[yes or no] Function inputs The UpdateCalendarInformation function is to be called with the following parameters. *: Required input **: Required input for creating new dates in calendar ***: Required input for creating new dates in calendar if room has extra beds > 0. ****: Required input for creating new dates in calendar if ReleaseDays = 0. Parameter name Description Valid Input Values * UserName The username of the provider * Password The password of the provider * RoomId The Sunhotels internal id of the room to update calendar information for. Note: Superdeal Room IDs can not be used. * StartDate The start of the time period that should be updated. * EndDate The end of the time period that should be updated. Integer representing a Sunhotels room ID A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD ** Price Price per room per night. Empty or decimal number. * Currency The currency that all provided prices are specified in. String representing a currency code, e.g. EUR. ** Availability The number of available rooms. Note: Allotment updates on rooms within RoomGroups will be Integer representing the number of available rooms in the given time period. applied on all rooms within same RoomGroupID. ** MinimumStay The minimum length of stay. Integer Sunhotels PUSH version 2.2 6

7 ** ReleaseDays The number of days before checkin the booking must be made. **** ReleaseHour The hour on arrival date the room is available until. Value can only be entered when ReleaseDays is set to 0. *** xbedadultrate Extra bed price for adults. Note: If the room has extra beds, xbedadultrate must be specified when creating new dates in Calendar. -1 will disable the extra bed for use of an adult if the room has extra beds. *** xbedchildrate Extra bed price for children, 2-11 years old. Note: If the room has extra beds, xbedchildrate must be specified when creating new dates in Calendar. ** IncludedBoard The included board. Note: Included meal option sets a limit on which additional meal options that are available. Only higher meal options than included are available as additional. I.e. if included is Half Board, only Full Board and All Inclusive are available as additional. A higher meal option must have a higher price; i.e. Half Board must be more expensive than Breakfast. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. ** BreakfastAdultPrice The adult price for additional meal breakfast. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. ** BreakfastChildPrice The child price for additional meal breakfast. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. ** HalfBoardAdultPrice The adult price for additional meal half board. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. Integer Integer, 0-18 Decimal number or Empty Decimal number or Empty String representing the included board. Valid values are: None, Breakfast, Half_Board, Full_Board and All. Empty or decimal number. Empty or decimal number. Empty or decimal number. Sunhotels PUSH version 2.2 7

8 ** HalfBoardChildPrice The child price for additional meal half board. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. ** FullBoardAdultPrice The adult price for additional meal full board. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. ** FullBoardChildPrice The child price for additional meal full board. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. ** AllIncAdultPrice The adult price for additional meal all inclusive. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. ** AllIncChildPrice The child price for additional meal all inclusive. Note: If includedboard and/or any additional meal option is specified ALL additional mealoptions and IncludedBoard must be specified. * UpdateSuperDealPrices Apply price changes to Superdeal room if one exists. Empty or decimal number. Empty or decimal number. Empty or decimal number. Empty or decimal number. Empty or decimal number. yes or no Function output Specification of output of the UpdateCalendarInformation method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=UpdateCalendarInformation XML output <?xml version="1.0" encoding="utf-8"?> <UpdateResponse> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the update.--> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version 2.2 8

9 SH.UpdateAvailability This function is used to update availability for a room type without having to send price information. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/UpdateAvailability?username=[username]&password=[password]&s hroomid=[room id]&startdate=[start date]&enddate[end date]&availability=[number of available rooms] Function inputs The UpdateAvailability function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values *username *password *shroomid *startdate *enddate *availability The username of the provider The password of the provider The Sunhotels internal id of the room to update availability for. The start of the time period that should be updated. The end of the time period that should be updated. The number of available rooms. Note: Allotment updates on rooms within RoomGroups will be applied on all rooms within same RoomGroupID. Integer representing a Sunhotels room ID or a Sunhotels Superdeal room ID A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD Integer representing the number of available rooms. Function output Specification of output of the UpdateAvailability method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=UpdateAvailability XML output <?xml version="1.0" encoding="utf-8"?> <UpdateResponse> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the update.--> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version 2.2 9

10 SH.StopSale This function is used to set availability to 0 for a time period selected room. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/StopSale?username=[username]&password=[password]&s hroomid=[room id]&startdate=[start date]&enddate[end date] Function inputs The StopSale function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values *username *password *shroomid *startdate *enddate The username of the provider The password of the provider he Sunhotels internal id of the room to stop sales for. Note: Stop Sale made on rooms within RoomGroups will be applied on selected dates for all rooms within same RoomGroupID. The start of the time period that should be stopped for sale. The end of the time period that should be stopped for sale. Integer representing a Sunhotels room ID or a Sunhotels Superdeal room ID A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD Function output Specification of output of the UpdateAvailability method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=UpdateAvailability XML output <?xml version="1.0" encoding="utf-8"?> <UpdateResponse> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the stop sale.--> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version

11 SH.GetRoomTypeAvailability This function is used to get availability for a single room in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/GetRoomTypeAvailability?username=[username]&passwo rd=[password]&startdate=[start date]&enddate=[end date]&shroomid=[room Id] Function inputs The GetRoomTypeAvailability function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values *username *password *startdate *enddate *shroomid The username of the provider The password of the provider The start of the time period that availability should be returned for. The end of the time period that availability should be returned for. The Sunhotels internal id of the room to get availability for. A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD Integer representing a Sunhotels room ID Function output Specification of output of the GetRoomTypeAvailability method can be found at: /2.2/ PostGet/PushWithSunHotelsId.asmx?op=GetRoomTypeAvailability Sunhotels PUSH version

12 XML output <?xml version="1.0" encoding="utf-8"?> <AvailabilityResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong--> <StatusCode></StatusCode> <!--All roomtype availabilities returned in the result--> <RoomTypeAvailabilities> <RoomTypeAvailability> <!--The date of the availability--> <Date></Date> <!--The Sunhotels id of the room--> <RoomId></RoomId> <!--The price of the room--> <Rate></Rate> <!--The currency code of the rate--> <Currency></Currency> <!--The number of available units--> <AvailableUnits></AvailableUnits> <!--The number of days before checkin the reservation must be made--> <ReleaseDays></ReleaseDays> <!--The hour on arrival date the room is available until--> <ReleaseHour></ReleaseHour> <!--Minimum days to stay--> <MinimumStay></MinimumStay> <!--The number of beds for the room--> <Beds></Beds> <!--The number of extra beds for the room--> <ExtraBeds></ExtraBeds> <!--The name of the included board: "No meals", "Breakfast", "Half Board", "Full Board", or "All"--> <IncludedBoard></IncludedBoard> <!--The price for adult breakfast--> <AdultBreakfastPrice></AdultBreakfastPrice> <!--The price for child breakfast--> <ChildBreakfastPrice></ChildBreakfastPrice> <!--The price for adult half board--> <AdultHalfBoardPrice></AdultHalfBoardPrice> <!--The price for child half board--> <ChildHalfBoardPrice></ChildHalfBoardPrice> <!--The price for adult full board--> <AdultFullBoardPrice></AdultFullBoardPrice> <!--The price for child full board--> <ChildFullBoardPrice></ChildFullBoardPrice> <!--The price for adult all inclusive--> <AdultAllBoardsPrice></AdultAllBoardsPrice> <!--The price for child all inclusive--> <ChildAllBoardsPrice></ChildAllBoardsPrice> <!--The price for adult extra bed--> <AdultExtrabedPrice></AdultExtrabedPrice> <!--The price for child extra bed--> <ChildExtrabedPrice></ChildExtrabedPrice> </RoomTypeAvailability> </RoomTypeAvailabilities> </AvailabilityResponse> Sunhotels PUSH version

13 SH.AddSuperDealRoom This function is to add a new Superdeal room in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/AddSuperDealRoom?UserName=[username]&Password=[ password]&roomid=[parent room id] Function inputs The AddSuperDealRoom function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values * UserName The username of the provider * Password The password of the provider * RoomId The room id of the parent room Integer representing a Sunhotels room ID Function output Specification of output of the AddSuperDealRoom method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=AddSuperDealRoom XML output <?xml version="1.0" encoding="utf-8"?> <UpdateResponse> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the stop sale.--> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version

14 SH.GetSuperDealRoomTypes This function is used to get available Superdeal room types for a single hotel in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/GetSuperDealRoomTypes?username=[username]&passwo rd=[password]&shhotelid=[hotel Id] Function inputs The GetRoomTypes function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values *username The username of the provider *password The password of the provider * shhotelid The Sunhotels internal id of the hotel to get Superdeal room types for. Integer representing a Sunhotels hotel ID Function output Specification of output of the GetSuperDealRoomTypes method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=GetRoomTypes Sunhotels PUSH version

15 XML output <?xml version="1.0" encoding="utf-8"?> <RoomTypeResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong--> <StatusCode></StatusCode> <!--All hotels returned in the result--> <Hotels> <Hotel> <!--The internal Sunhotels hotel id. Can be used when only room types for one hotel is of interest--> <HotelId></HotelId> <RoomTypes> <RoomType> <!--The internal Sunhotels room Id--> <RoomId></RoomId> <!--Always empty--> <RoomTypeId /> <!--The internal Sunhotels room group id--> <RoomGroupID></RoomGroupID> <!--The internal Sunhotels parent room type id--> <ParentRoomId></ParentRoomId> <!--The internal Sunhotels superdeal room type id--> <SuperDealRoomID></SuperDealRoomID> <!--The number of beds that are available for the room--> <Beds></Beds> <!--The number of extra beds that are available for the room--> <Extrabeds></Extrabeds> <!--The room type description--> <Description></Description> <!--Indicates if room type is non-refundable--> <Nonrefundable></Nonrefundable> <!--Internal room note--> <InternalRoomNote></InternalRoomNote> <!--Indicates if room type has gross rates--> <GrossRates></GrossRates> <!--The room payment method(s)--> <RoomPaymentMethods> <RoomPaymentMethod Id="" Name=""/> </RoomPaymentMethods> </RoomType> </RoomTypes> </Hotel> </Hotels> </RoomTypeResponse> Sunhotels PUSH version

16 SH.AddSuperDealCalendarDates This function is used to add new Superdeal dates to the calendar in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx?op=AddSuperDealCalendarDates?UserName=[username]& Password=[password]&StartDate=[ start date]&enddate=[end date]&superdealroomid=[ super deal room Id]&Discount=[discount]&Availability=[availability]&ReleaseDays=[release days]&minimumstay=[minimum stay] &CopyAdditionalMeals=[ copy additional meals] Function inputs The AddSuperDealCalendarDates function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values * UserName The username of the provider * Password The password of the provider * StartDate Start date of the Superdeal period. Note: Matching dates in parent room required when adding Superdeal period. * EndDate End date of the Superdeal period. Note: Matching dates in parent room required when adding Superdeal period. * SuperDealRoomId Sunhotels internal Superdeal room id. * Discount Superdeal discount value of the given period in Percent, minimum 10 %. Availability The number of available rooms. Leave empty to copy Availability from Parent room. ReleaseDays The number of release days. Leave empty to copy ReleaseDays from Parent room. ReleaseHour The hour on arrival date the room is available until. Value can only be entered when ReleaseDays is set to 0. MinimumStay The number of minimum days to stay. Leave empty to copy MinimumStay from Parent room. * CopyAdditionalMeals If additional meals will be copied from the parent room. A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD Integer representing a Sunhotels internal Superdeal room id. Integer Integer Integer Integer, 0-18 Integer. yes or no Function output Specification of output of the AddSuperDealCalendarDates method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=AddSuperDealCalendarDates Sunhotels PUSH version

17 XML output <?xml version="1.0" encoding="utf-8"?> <UpdateResponse> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the stop sale.--> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version

18 SH.UpdateSuperDealCalendar This function is used to update existing Superdeal availability, discount etc. for a Superdeal room. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/UpdateSuperDealCalendar?UserName=[username]&Passw ord =[password]&startdate=[start date]&enddate=[end date]&superdealroomid=[super deal room id]&discount=[discount value] Function inputs The UpdateSuperDealCalendar function is to be called with the following parameters. *: Required input **: Required alternative (input required in minimum one of these parameters) ***: Required input for creating new dates in calendar if ReleaseDays = 0. Parameter name Description Valid Input Values *UserName *Password *StartDate EndDate *SuperDealRoomId **Discount **Availability **ReleaseDays ***ReleaseHour The username of the provider The password of the provider The start of the time period that should be updated. The end of the time period that should be updated. If EndDate is not set, the EndDate will be set to same as StartDate. The Sunhotels internal id of the Superdeal room to update calendar information for. Discount value in percent, Minimum 10 %. If empty no update is made on existing Discount. The number of available rooms. If empty no update is made on existing availability. The number of release days. If empty no update is made on existing ReleaseDays. The hour on arrival date the room is available until. Value can only be entered when ReleaseDays is set to 0. A date in the format YYYY- MM-DD A date in the format YYYY- MM-DD Integer representing a Sunhotels internal Superdeal room id. Integer Integer representing the number of available rooms. Integer Integer, 0-18 Sunhotels PUSH version

19 **MinimumStay The number of minimum days to stay. If empty no update is made on existing MinimumStay. Integer Function output Specification of output of the UpdateSuperDealCalendar method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=UpdateSuperDealCalendar XML output <?xml version="1.0" encoding="utf-8"?> <UpdateResponse> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the stop sale.--> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version

20 SH.GetSuperDealAvailability This function is used to get availability for a single Superdeal room in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/GetSuperDealAvailability?UserName =[username]&password =[password]&startdate =[start date] &EndDate=[end date] &SuperDealRoomID=[super deal room id] Function inputs The GetSuperDealAvailability function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values * UserName The username of the provider * Password The password of the provider * StartDate The start of the time period that availability should be returned for. EndDate The end of the time period that availability should be returned for. If EndDate is not set, the EndDate will be set to same as StartDate. * SuperDealRoomID The Sunhotels internal id of the Superdeal room to get availability for. A date in the format YYYY- MM-DD A date in the format YYYY- MM-DD Integer representing a Sunhotels internal Superdeal room id. Function output Specification of output of the GetSuperDealAvailability method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=GetSuperDealAvailability Sunhotels PUSH version

21 XML output <?xml version="1.0" encoding="utf-8"?> <SuperDealResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong.--> <StatusCode></StatusCode> <!--All superdeals returned in the result--> <SuperDeals> <SuperDeal> <!--The internal Sunhotels superdeal room type id--> <SuperDealRoomID></SuperDealRoomID> <!--The internal Sunhotels parent room type id--> <ParentRoomID></ParentRoomID> <!--The date of the availability--> <Date></Date> <!--The number of units availabe--> <AvailableUnits></AvailableUnits> <! Minimum days to stay--> <MinimumStay></MinimumStay> <!--The price for adult extra bed--> <AdultExtrabedPrice></AdultExtrabedPrice> <!--The price for child extra bed--> <ChildExtrabedPrice></ChildExtrabedPrice> <! The number of days before checkin the reservation must be made--> <ReleaseDays></ReleaseDays> <! The hour on arrival date the room is available until.--> <ReleaseHour></ReleaseHour> <!--The price of the room--> <Rate></Rate> <!--The name of the included board: "No meals", "Breakfast", "Half Board", "Full Board", or "All"--> <IncludedBoard> </IncludedBoard> <!--The price for adult breakfast--> <AdultBreakfastPrice></AdultBreakfastPrice> <!--The price for child breakfast--> <ChildBreakfastPrice></ChildBreakfastPrice> <!--The price for adult half board--> <AdultHalfBoardPrice></AdultHalfBoardPrice> <!--The price for child half board--> <ChildHalfBoardPrice></ChildHalfBoardPrice> <!--The price for adult full board--> <AdultFullBoardPrice></AdultFullBoardPrice> <!--The price for chil full board--> <ChildFullBoardPrice></ChildFullBoardPrice> <!--The price for adult all inclusive--> <AdultAllBoardsPrice></AdultAllBoardsPrice> <!--The price for child all inclusive--> <ChildAllBoardsPrice></ChildAllBoardsPrice> </SuperDeal> </SuperDeals> </SuperDealResponse> Sunhotels PUSH version

22 SH.AddDiscount This function is used add new discounts in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx?op=AddDiscount&UserName=[username]&Password=[pas sword]&periodid=[period Id]&PeriodStart=[ period start date]&periodend=[period end date]&weekday=[week day]&roomid=[room Id]&TypeId=[discount type Id]&MinDate=[minimum date]&value=[discount value]&currency=[currency] Function inputs The AddDiscount function is to be called with the following parameters. Discount Types Parameter name (Valid Input Values) UserName: () Password: () PeriodId: (Integer) PeriodStart: (Date format YYYY- MM-DD MM = Month number ) PeriodEnd: (Date format YYYY- MM-DD MM = Month number ) WeekDay: (Integer) Description The username of the provider performing the request. The password of the provider performing the request. The identifier of the discount period. The start of the discount period. The end of the discount period. Apply discount on specified weekday only. Discount Type ID: 1 Value percent Discount Type ID: 3 Early Booking Discount Percent Discount Type ID: 5 Pay/stay Discount Type ID: 6 Min Max Percent Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Optional Optional Optional Optional Sunhotels PUSH version

23 RoomId: (Integer) TypeId: (Integer) MinDate: (Date format YYYY- MM-DD MM = Month number ) MinDays: (Integer) MaxDays: (Integer) MaxRepetitions: (Integer) CheckinBased (Boolean) IncludeMeal (Boolean) IncludeExtraBed (Boolean) AccumulativeGroup (Integer) Value: (Integer) Currency: () The Sunhotels internal room id or the Sunhotels internal Superdeal room ID. Mandatory Mandatory Mandatory Mandatory Discount type Id Mandatory Mandatory Mandatory Mandatory Minimum date of the discount Minimum days of the discount Maximum days of the discount Max repetitions of the discount. Enable discount on all days if the first discount day(s) is CheckInBased Calculate discount on meals Calculate discount on extrabeds In which order the discount should be calculated Value of the discount. Currency of the discount. Not Allowed 1 of 2 Mandatory Not Allowed Not Allowed Mandatory Mandatory Mandatory Not Allowed Not Allowed Not Allowed Mandatory Not Allowed Not Allowed Mandatory (Validation 1-99) Not Allowed Optional Optional Optional Optional Optional Optional Optional Optional Optional Optional Optional Optional Not Allowed Mandatory (Validation > 0 and < 100) Optional (0 or 1) Mandatory (Validation > 0 and < 100) Not Allowed Mandatory (Validation > 0) Not Allowed Mandatory (Validation > 0 and < 100) Mandatory Mandatory Mandatory Mandatory Function output Specification of output of the AddDiscount method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=AddDiscount Sunhotels PUSH version

24 XML output <?xml version="1.0" encoding="utf-8"?> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the update.--> <UpdateResponse> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version

25 SH.DeleteDiscounts This function is used to delete discounts in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/DeleteDiscount?UserName=[username]&Password=[pass word]& HotelId=[hotel Id]&RoomId=[room Id]&PeriodId=[discount period id] Function inputs The DeleteDiscount function is to be called with the following parameters. Discount Types Parameter name (Valid Input Values) UserName: () Password: () HotelId (Integer) RoomId: (Integer) PeriodId: (Integer) TypeId: (Integer) MinDate: (Date format YYYY- MM-DD MM = Month number ) MinDays: (Integer) Description The username of the provider performing the request. The password of the provider performing the request. The Sunhotels internal id of the hotel. The Sunhotels internal room id or the Sunhotels internal Superdeal room ID. Id representing the discount period. ID of the discount type Date representing the last bookable date to receive EBD discount Minimum days of the discount. Discount Type ID: 1 Value percent Discount Type ID: 3 Early Booking Discount Percent Discount Type ID: 5 Pay/stay Discount Type ID: 6 Min Max Percent Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Mandatory Optional Optional Optional Optional Optional Optional Optional Optional Optional Optional Optional Optional Not Allowed Optional Not Allowed Not Allowed Optional Optional Optional Optional Sunhotels PUSH version

26 Value: (Integer) PeriodStart: (Date format YYYY- MM-DD MM = Month number ) PeriodEnd: (Date format YYYY- MM-DD MM = Month number ) Discount value. Optional Optional Optional Optional Start date of the discount. End date of the discount. Optional Optional Optional Optional Optional Optional Optional Optional Function output Specification of output of the GetBookings method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=DeleteDiscount XML output <?xml version="1.0" encoding="utf-8"?> <!--The status of the response. 0 means success, a larger value than 0 means that something went wrong when trying to make the update.--> <UpdateResponse> <StatusCode></StatusCode> </UpdateResponse> Sunhotels PUSH version

27 SH.GetDiscounts This function is used to get discounts from a single hotel or room in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/GetDiscounts?UserName=[username]&Password=[passwo rd] &HotelId=[hotel Id]&RoomId=[room Id] Function inputs The GetDiscounts function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values * UserName The username of the provider * Password The password of the provider * HotelId The Sunhotels internal id of the hotel to get discounts for. RoomId The Sunhotels internal id of the room to get discounts for. Leave empty to get discounts for all rooms on the hotel. Integer representing a Sunhotels hotel ID Integer representing a Sunhotels internal room id. Function output Specification of output of the GetDiscounts method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=GetDiscounts Sunhotels PUSH version

28 XML output <?xml version="1.0" encoding="utf-8"?> <DiscountResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong--> <StatusCode></StatusCode> <!--All discounts returned in the result--> <Discounts> <Discount> <!--The internal Sunhotels room id--> <RoomId></RoomId> <!--The internal Sunhotels discount type id 1: Value percent, 3: Early booking discount, 5: Pay/stay, 6: Min/Max percent--> <TypeId></TypeId> <!--The internal Sunhotels discount period identifier--> <PeriodId></PeriodId> <!--The start of the dicount period--> <PeriodStart></PeriodStart> <!--The end of the discount period--> <PeriodEnd></PeriodEnd> <!--The minimum date of the discount--> <MinDate></MinDate> <!--The minimum days of the discount--> <MinDays></MinDays> <!--The maximum days of the discount--> <MaxDays></MaxDays> <!--The max repetitions of the discount--> <MaxRepetitions></MaxRepetitions> <!--Indicates whether the discount is enabled for all days if the firstdiscount day(s) is CheckinBased--> <CheckinBased></CheckinBased> <!--Discount is calculated on meals as well--> <IncludeMeal></IncludeMeal> <!--Discount is calculated on extra beds as well--> <IncludeExtraBed></IncludeExtraBed> <!--Order in which the discount is calculated--> <AccumulativeGroup></AccumulativeGroup> <!--The value of the discount--> <Value></Value> <!--The currency of the discount--> <Currency></Currency> </Discount> </Discounts> </DiscountResponse> Sunhotels PUSH version

29 SH.GetBookings This function is used to get bookings for one or all hotels in the system. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/GetBookings?username=[username]&password=[password]&shHote lid=[hotel Id]&arrivalStartDate=[arrival start date]&arrivalenddate=[end date]&bookingstartdate=[booking start date]&bookingenddate=[booking end date]&cancelstartdate=[cancel start date]&cancelenddate=[cancel end date] Function inputs The GetBookings function is to be called with the following parameters. *: Required input **: Required alternative (input required in minimum one of these parameters) Parameter name Description Valid Input Values *username *password shhotelid **arrivalstartdate arrivalenddate **bookingstartdate The username of the provider The password of the provider The Sunhotels internal id of the hotel to get bookings for. Leave empty to get bookings for all hotels. The start of the time period that bookings should be returned for. The end of the time period that bookings should be returned for. If an arrivalstartdate is provided and no arrivalenddate is set. The arrivalenddate will be set to today s date plus one year. The start of the time period when the booking was made. A Sunhotels internal hotel id. A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD hh:mm hh = hours mm = minutes Sunhotels PUSH version

30 bookingenddate **cancelstartdate cancelenddate The end of the time period when the booking was made. If a bookingstartdate is provided and no bookingenddate is set the bookingenddate will be set to today s date and time. The start of the time period when the booking was cancelled. The end of the time period when the booking was cancelled. If a cancelstartdate is provided and no cancelenddate is set the cancelenddate will be set to today s date and time. A date in the format YYYY-MM- DD hh:mm hh = hours mm = minutes A date in the format YYYY-MM- DD hh:mm hh = hours mm = minutes A date in the format YYYY-MM- DD hh:mm hh = hours mm = minutes Function output Specification of output of the GetBookings method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=GetBookings Sunhotels PUSH version

31 XML output <?xml version="1.0" encoding="utf-8"?> <BookingResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong.--> <StatusCode></StatusCode> <!--All bookings returned in the result--> <Bookings> <Booking> <!--The date the booking was made--> <BookingDate></BookingDate> <!--The check-in date for the booking--> <CheckInDate></CheckInDate> <!--The check-out date for the booking--> <CheckOutDate></CheckOutDate> <!--The number of adults--> <Adults></Adults> <!--The id of the booking--> <BookingId></BookingId> <!--The number of childs--> <Children></Children> <!--The number of nights--> <Nights></Nights> <!--The number of booked rooms--> <Rooms></Rooms> <!--The names of the adult guests--> <AdultGuests></AdultGuests> <!--The names of the child guests--> <ChildGuests></ChildGuests> <!--The roome type description--> <RoomType></RoomType> <!--The status of the booking, Active or Cancelled--> <Status></Status> <!--If Status is Cancelled CancelDate is the date of the cancellation. CancelDate will be null/empty if not cancelled--> <CancelDate></CancelDate> <!--The booked board (All, Full Board, Half Board, Breakfast or No meals)--> <BookedBoard></BookedBoard> <!--The Sunhotels id of the booked room--> <RoomId></RoomId> <!--The Sunhotels id of the hotel for the booked room--> <HotelId></HotelId> <!--Special requests for the booking--> <SpecialRequest></SpecialRequest> <!--The method the booking has been paid with--> <PaymentMethod> <!--The contract type ID (1 = Invoice, 2 = Pay At Hotel)--> <Id></Id> <!--The contract type name (Invoice or Pay At Hotel)--> <Name></Name> <!--For Pay At Hotel, the price the guest should pay--> <GuestPrice></GuestPrice> <!--For Pay At Hotel, the total price for the hotel--> <ContractRate></ContractRate> <!--For Pay At Hotel, the price amount Sunhotels need--> <Commission></Commission> <!--The hotel currency--> <Currency></Currency> </PaymentMethod> </Booking> </Bookings> </BookingResponse> Sunhotels PUSH version

32 SH.GetBookingsWithVcc This function is used to get bookings for one or all hotels in the system and include Virtual Credit Card (VCC) details where this is the agreed payment method. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/GetBookingsWithVcc?username=[username]&password=[password] &shhotelid=[hotel Id]&arrivalStartDate=[arrival start date]&arrivalenddate=[end date]&bookingstartdate=[booking start date]&bookingenddate=[booking end date]&cancelstartdate=[cancel start date]&cancelenddate=[cancel end date]&includevccdata=[true or false] Function inputs The GetBookingsWithVcc function is to be called with the following parameters. *: Required input **: Required alternative (input required in minimum one of these parameters) Parameter name Description Valid Input Values *username *password shhotelid **arrivalstartdate arrivalenddate **bookingstartdate bookingenddate The username of the provider The password of the provider The Sunhotels internal id of the hotel to get bookings for. Leave empty to get bookings for all hotels. The start of the time period that bookings should be returned for. The end of the time period that bookings should be returned for. If an arrivalstartdate is provided and no arrivalenddate is set. The arrivalenddate will be set to today s date plus one year. The start of the time period when the booking was made. The end of the time period when the booking was made. If a bookingstartdate is provided and no bookingenddate is set the bookingenddate will be set to today s date and time. A Sunhotels internal hotel id. A date in the format YYYY-MM- DD A date in the format YYYY-MM- DD A date in the format YYYY-MM-DD hh:mm hh = hours mm = minutes A date in the format YYYY-MM-DD hh:mm hh = hours mm = minutes Sunhotels PUSH version

33 **cancelstartdate cancelenddate *includevccdata The start of the time period when the booking was cancelled. The end of the time period when the booking was cancelled. If a cancelstartdate is provided and no cancelenddate is set the cancelenddate will be set to today s date and time. Specifies whether the output data should include information about the issued virtual credit cards (only for the bookings for which this kind of information is available). A date in the format YYYY-MM-DD hh:mm hh = hours mm = minutes A date in the format YYYY-MM-DD hh:mm hh = hours mm = minutes true if the output should include information about virtual credit cards. false if the output should not include information about virtual credit cards. Function output Specification of output of the GetBookingsWithVcc method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op=GetBookingsWithVcc Sunhotels PUSH version

34 XML output <?xml version="1.0" encoding="utf-8"?> <BookingResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong.--> <StatusCode></StatusCode> <!--All bookings returned in the result--> <Bookings> <Booking> <!--The date the booking was made--> <BookingDate></BookingDate> <!--The check-in date for the booking--> <CheckInDate></CheckInDate> <!--The check-out date for the booking--> <CheckOutDate></CheckOutDate> <!--The number of adults--> <Adults></Adults> <!--The id of the booking--> <BookingId></BookingId> <!--The number of childs--> <Children></Children> <!--The number of nights--> <Nights></Nights> <!--The number of booked rooms--> <Rooms></Rooms> <!--The names of the adult guests--> <AdultGuests></AdultGuests> <!--The names of the child guests--> <ChildGuests></ChildGuests> <!--The roome type description--> <RoomType></RoomType> <!--The status of the booking, Active or Cancelled--> <Status></Status> <!--If Status is Cancelled CancelDate is the date of the cancellation. CancelDate will be null/empty if not cancelled--> <CancelDate></CancelDate> <!--The booked board (All, Full Board, Half Board, Breakfast or No meals)--> <BookedBoard></BookedBoard> <!--The Sunhotels id of the booked room--> <RoomId></RoomId> <!--The Sunhotels id of the hotel for the booked room--> <HotelId></HotelId> <!--Special requests for the booking--> <SpecialRequest></SpecialRequest> <!--The method the booking has been paid with--> <PaymentMethod> <!--The contract type ID (1 = Invoice, 2 = Pay At Hotel)--> <Id></Id> <!--The contract type name (Invoice or Pay At Hotel)--> <Name></Name> <!--For Pay At Hotel, the price the guest should pay--> <GuestPrice></GuestPrice> <!--For Pay At Hotel, the total price for the hotel--> <ContractRate></ContractRate> <!--For Pay At Hotel, the price amount Sunhotels need--> <Commission></Commission> <!--The hotel currency--> <Currency></Currency> </PaymentMethod> <!--Virtual Credit card details--> <VirtualCreditCard> <!--Credit Card number--> <CardNumber></CardNumber> Sunhotels PUSH version

35 <!--Three digit Card Verification Value, CVV2 --> <Cvv2></Cvv2> <!--Credit card Expiry date, MM/YYYY --> <ExpiryDate></ExpiryDate> <!--Amount charged to the card--> <Amount></Amount> <!--Three letter ISO code of the currency of the amount--> <Currency></Currency> <!--Credit Card holder name--> <CardHolderName></CardHolderName> <!--The date from which the card is valid to charge --> <ValidFrom></ValidFrom> <!--The last date the card is valid to charge --> <ValidUntil></ValidUntil> </VirtualCreditCard> </Booking> <Booking>... <VirtualCreditCard> <!--If an error occurs while retrieving credit card information, an error message will be returned as the only content of this element --> <Error></Error> </VirtualCreditCard> </Booking> </Bookings> </BookingResponse> Sunhotels PUSH version

36 SH.GetBookingPriceBreakdown This function is used to get the price breakdown for a specified booking. Example URL /2.2/PostGet/PushWithSunHotelsId.asmx/ GetBookingPriceBreakdown?username=[username]&password=[password]&shBookingId=[shBookingId] Function inputs The GetBookingPriceBreakdown function is to be called with the following parameters. *: Required input **: Required alternative (input required in minimum one of these parameters) Parameter name Description Valid Input Values *username *password *shbookingid The username of the provider The password of the provider The Sunhotels internal id of the booking to get the booking price breakdown. A Sunhotels internal booking id. Function output Specification of output of the GetBookingPriceBreakdown method can be found at: /2.2/PostGet/PushWithSunHotelsId.asmx?op= GetBookingPriceBreakdown XML output <?xml version="1.0" encoding="utf-8"?> <BookingPriceBreakdownResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong.--> <StatusCode></StatusCode> <!--The id of the booking--> <BookingId></BookingId> <!--The applied commission, 0 if prices are NET --> <Commission></Commission> <!-- The currency that all provided prices are specified in. --> <Currency></ Currency > <!--All contract prices per day returned in the result, all prices are NET with above stated commission deducted--> <ContractCalendarList> <ContractCalendar> <!--The price date--> <Date></Date> <!--The base price of the room--> <ContractPrice></ContractPrice> <!--The adult price for the extrabed--> <ContractExtrabedAdult></ContractExtrabedAdult> <!--The child price for the extrabed--> <ContractExtrabedChild></ContractExtrabedChild> <!--Adult price for the breakfast--> <ContractAdultBreakfast></ContractAdultBreakfast> <!--Adult price for the half board--> <ContractAdultHalfBoard></ContractAdultHalfBoard> <!--Adult price for the full board--> <ContractAdultFullBoard></ContractAdultFullBoard> <!--Adult price for the all inclusive--> <ContractAdultAllInclusive></ContractAdultAllInclusive> Sunhotels PUSH version

37 <!--Child price for the breakfast--> <ContractChildBreakfast></ContractChildBreakfast> <!--Child price for the half board--> <ContractChildHalfBoard></ContractChildHalfBoard> <!--Child price for the full board--> <ContractChildFullBoard></ContractChildFullBoard> <!--Child price for the all inclusive--> <ContractChildAllInclusive></ContractChildAllInclusive> <!--Information of what board is included in base price --> <IncludedBoard></IncludedBoard> </ContractCalendar> </ContractCalendarList> <!--All applied discounts--> <ContractDiscountList> <ContractDiscount> <!--The Id of the discount type--> <TypeId></TypeId> <!--The value applied for this discount, depending on type it can be percent or night(s)--> <Value></Value> <!--Indicates if the discount is checkin based (true) or stay based (false)--> <CheckinBased></CheckinBased> <!--Indicates if discount is applied to meal supplement booked --> <IncludeMeal></IncludeMeal> <!--Indicates if discount is applied to booked extra bed(s) --> <IncludeExtraBed></IncludeExtraBed> <!--Indicates if discount is accumulative with another discount--> <AccumulativeGroup></AccumulativeGroup> <!--Amount discounted--> <ContractAmount></ContractAmount> <!--Minimum Stay Days required for discount to apply--> <DiscountMinDays></DiscountMinDays> <!--Maximum Stay Days allowed for discount to apply--> <DiscountMaxDays></DiscountMaxDays> <!--Booking Discount Start Date--> <StartDate></StartDate> <!--Booking Discount End Date --> <EndDate></EndDate> <!--The identifier of the discount period.--> <PeriodId></PeriodId> <!--Early booking deadline date --> < DiscountMinDate></DiscountMinDate> <!--Price discounted--> <MaxRepetitions></MaxRepetitions> </ContractDiscount> </ContractDiscountList> </BookingPriceBreakdownResponse> Sunhotels PUSH version

38 EX.GetRoomTypes This function is used to get available room types for all or a single hotel in the system. Example URL /2.2/PostGet/PushWithProviderId.asmx/GetRoomTypes?username=[username]&password=[password]&provi derhotelid=[providerhotel Id] Function inputs The GetRoomTypes function is to be called with the following parameters. *: Required input Parameter name Description Valid Input Values *username *password providerhotelid The username of the provider The password of the provider The provider id of the hotel to get room types for. Note: leave empty to get all available room types for all hotels. String representing a provider hotel ID Function output Specification of output of the GetRoomTypes method can be found at: /2.2/PostGet/PushWithProviderId.asmx?op=GetRoomTypes Sunhotels PUSH version

39 XML output <?xml version="1.0" encoding="utf-8"?> <RoomTypeResponse> <!--The status of the response. 0 means success, a larger value than 0 means something is wrong--> <StatusCode></StatusCode> <!--All hotels returned in the result--> <Hotels> <Hotel> <!--The provider hotel id. Can be used when only room types for one hotel is of interest--> <ProviderHotelId></ProviderHotelId> <!--The currency code used by the hotel--> <Currency></Currency> <!--The name of the hotel--> <HotelName></HotelName> <!--All room types that are available for the hotel--> <RoomTypes> <RoomType> <!--The room type id--> <RoomTypeId></RoomTypeId> <!--The room group id--> <RoomGroupID/> <!--The number of beds that are available for the room--> <Beds></Beds> <!--The number of extra beds that are available for the room--> <Extrabeds></Extrabeds> <!--The room type description--> <Description></Description> <!--Inicates if the room is non-refundable--> <Nonrefundable></Nonrefundable> <!--Internal room note--> <InternalRoomNote></InternalRoomNote> <!--Indicates if the room has gross rates--> <GrossRates></GrossRates> <!--The room payment method(s)--> <RoomPaymentMethods> <RoomPaymentMethod Id="1" Name="Invoice"/> <RoomPaymentMethod Id="2" Name="Pay at Hotel"/> </RoomPaymentMethods> </RoomType> </RoomTypes> </Hotel> </Hotels> </RoomTypeResponse> Sunhotels PUSH version

CASS & Airline User Manual

CASS & Airline User Manual CASSLink AWB Stock Management System CASS & Airline User Manual Version 2.11 (for CASSLink Version 2.11) Version 2.11 1/29 March 2009 CASSLink Stock Management Table of Contents Introduction... 3 1. Initialising

More information

NHS Professionals System User Guide

NHS Professionals System User Guide System: Holiday Booking Version Number: 1702.01.00.01 Audience: Flexible Workers Document Version Number: V3 Version Number Author Date Signed Off V3 John Russell 29 th September 2017 V0.2 John Russell

More information

Hip Hotel Tulum **** (Tulum) Hip Hotel Tulum

Hip Hotel Tulum **** (Tulum) Hip Hotel Tulum EMAIL **** (Tulum) season 07JAN17 23APR17 CheckIn 3:00 PM CheckOut 12:00 AM MoSu 194,57 194,57 229,59 06,99 Inclusive 711,99 32,43 MoSu 226,99 226,99 262,01 06,99 Inclusive 711,99 32,43 Continental halfboard

More information

NAIPS Internet Service Authorised NOTAM Originator User Guide Version 3.0. (To be read in addition to NIS User Guide 3.0)

NAIPS Internet Service Authorised NOTAM Originator User Guide Version 3.0. (To be read in addition to NIS User Guide 3.0) NAIPS Internet Service Authorised NOTAM Originator User Guide Version 3.0 (To be read in addition to NIS User Guide 3.0) User Guide for Authorised NOTAM Originators Version 3.0 1. Introduction... 3 1.1

More information

Product Specifications

Product Specifications Product Specifications GB Market Nord Pool AS CONTENTS 1. GENERAL 3 1.1 Scope 3 1.2 Time References 3 1.3 Cash Settlement and Delivery 3 2. INTRADAY MARKET 5 2.1 Intraday Market Products 6 2.2 Intraday

More information

LS-Data. Manual. Altenrhein Luftfahrt GmbH Office Park 3 Top 312 / Postfach 90 A-1300 Wien Flughafen

LS-Data. Manual. Altenrhein Luftfahrt GmbH Office Park 3 Top 312 / Postfach 90 A-1300 Wien Flughafen LS-Data Manual Altenrhein Luftfahrt GmbH Office Park 3 Top 312 / Postfach 90 A-1300 Wien Flughafen Contents: 1. General... 2 2. Requirements... 2 3. Log In... 3 4. Cockpit crew... 4 4.1. New flight...

More information

Playa Azul Golf Scuba Spa **** (Cozumel) Playa Azul Golf Scuba Spa

Playa Azul Golf Scuba Spa **** (Cozumel) Playa Azul Golf Scuba Spa EMAIL **** (Cozumel) season 01FEB17 01APR17 CheckIn 3:00 PM CheckOut 12:00 AM (AI) MoSu 233,03 233,03 282,65 332,26 011,99 Inclusive 011,99 Inclusive MoSu 308,71 396,91 523,70 650,50 03,99 Inclusive 411,99

More information

easycredit Integration Guide Version As of: About easycredit: General information about easycredit

easycredit Integration Guide Version As of: About easycredit: General information about easycredit About easycredit: General information about easycredit easycredit Integration Guide Version 6.2.1 As of: 01.03.2018 Integration Guide Computop easycredit 1 About easycredit: General information about easycredit

More information

myidtravel Functional Description

myidtravel Functional Description myidtravel Functional Description Table of Contents 1 Login & Authentication... 3 2 Registration... 3 3 Reset/ Lost Password... 4 4 Privacy Statement... 4 5 Booking/Listing... 5 6 Traveler selection...

More information

Module Objectives. Creating a Manual Fare Build

Module Objectives. Creating a Manual Fare Build The Galileo system is capable of quoting most fares automatically. However, there are occasions when this is not possible or when you may elect to use a non-system fare. In these situations, it is possible

More information

SIS Miscellaneous PDF Detail Listing Improvements

SIS Miscellaneous PDF Detail Listing Improvements SIS Miscellaneous PDF Detail Listing Improvements Charge Category ATC Airport Ground Handling Date Issued: March 24, 2016 Introduction The Line Item Detail Listing PDF was designed to provide reconciliation

More information

FareStar Ticket Window Product Functionality Guide

FareStar Ticket Window Product Functionality Guide FareStar Ticket Window Product Functionality Guide To: GlobalStar, Peter Klebanow, Martin Metzler From: Paul Flight, TelMe Farebase Date: 11 August 2006 Version: Five Contact: paulf@telme.com Tel: +44

More information

CruisePay Enhancements for 2005 Training Guide Version 1.0

CruisePay Enhancements for 2005 Training Guide Version 1.0 CruisePay Enhancements for 2005 Training Guide Version 1.0 Royal Caribbean Cruises Ltd. 2004 i 9/8/2005 Table of Content: 1 Overview 1 1.1 Purpose: 2 1.2 Assumptions: 2 1.3 Definitions: 2 2 Web Application

More information

Grand Oasis Cancún ***** (Cancún)

Grand Oasis Cancún ***** (Cancún) EMAIL season 02JAN17 21FEB17 CheckIn 3:00 PM CheckOut 12:00 AM MoSu 174,40 250,70 365,15 011,99 Inclusive 011,99 Inclusive MoSu 182,03 265,96 388,04 011,99 Inclusive 011,99 Inclusive MoSu 189,66 281,22

More information

Travel Agent - User Guide

Travel Agent - User Guide Travel Agent - User Guide Amadeus Fare World Contents Amadeus Fare World... 3 Search screen... 4 Standard Search... 4 Open Jaw search... 5 Agentweb... 5 Power Pricer (Agency Mark Up)... 6 Search functions...

More information

2018 PSO Profile Highlights and Tips. December 18, :00 3:00 PM

2018 PSO Profile Highlights and Tips. December 18, :00 3:00 PM 2018 PSO Profile Highlights and Tips December 18, 2018 2:00 3:00 PM Call Logistics The PSOPPC will be presenting the 2018 PSO Profile Highlights and Tips. Please use the chat (Ask a Question) to submit

More information

Virgin Australia s Corporate Booking Portal User Guide

Virgin Australia s Corporate Booking Portal User Guide Virgin Australia s Corporate Booking Portal User Guide Status: Review Version: 2.1 (accelerate) Date 07/06/2013 Table of Contents 1. Introduction... 4 2. Getting Started... 4 3. User Profiles... 4 User

More information

IRCTCC RAIL CONNECT ANDROID APP

IRCTCC RAIL CONNECT ANDROID APP IRCTCC RAIL CONNECT ANDROID APP USER GUIDE NOTE: Document is subject to change. Detailed terms and conditions available on IRCTC website www.irctc.co.in 1 P a g e INDEX Sino Content 1 Launch Screen 2 Login

More information

Product information & MORE. Product Solutions

Product information & MORE. Product Solutions Product information & MORE Product Solutions Amadeus India s Ticket Capping Solution For Airlines Document control Company Amadeus India Department Product Management Table of Contents 1. Introduction...4

More information

myldtravel USER GUIDE

myldtravel USER GUIDE myldtravel USER GUIDE Rev #2 Page 2 of 37 Table of Contents 1. First-Time Login... 4 2. Introduction to the myldtravel Application... 7 3. Creating a Listing... 8 3.1 Traveller Selection... 9 3.2 Flight

More information

S-Series Hotel App User Guide

S-Series Hotel App User Guide S-Series Hotel App User Guide Version 1.2 Date: April 10, 2017 Yeastar Information Technology Co. Ltd. 1 Contents Introduction... 3 About This Guide... 3 Installing and Activating Hotel App... 4 Installing

More information

Welcome to Air Tickets

Welcome to Air Tickets Welcome to Air Tickets Welcome to Air Tickets The Air Tickets website is the gateway to our SmartFares database. SmartFares automatically locates up-to-the-minute fares from virtually every airline in

More information

InHotel. Installation Guide Release version 1.5.0

InHotel. Installation Guide Release version 1.5.0 InHotel Installation Guide Release version 1.5.0 Contents Contents... 2 Revision History... 4 Introduction... 5 Glossary of Terms... 6 Licensing... 7 Requirements... 8 Licensing the application... 8 60

More information

Oasis Palm **** (Cancún)

Oasis Palm **** (Cancún) EMAIL season 02JAN17 21FEB17 CheckIn 3:00 PM CheckOut 12:00 AM MoSu 147,15 196,20 283,40 370,60 011,99 Inclusive 011,99 Inclusive halfboard fullboard MoSu All above mentioned rates must be markedup with

More information

Public. VR online user guide to travel agencies Autumn 2017

Public. VR online user guide to travel agencies Autumn 2017 VR online user guide to travel agencies Autumn 2017 1 Table of contents Important contact information to travel agencies Domestic long distance ticket products in travel agency online shop: Saver ticket,

More information

European Virtual Airlines

European Virtual Airlines Welcome to European Virtual Airlines We are excited to have you on board, and we look forward to seeing you fly with us! Flying for EVA is good fun, and it's easy. To get the best experience with our airline

More information

Grand Oasis Palm **** (Cancún)

Grand Oasis Palm **** (Cancún) EMAIL season 02JAN17 21FEB17 CheckIn 3:00 PM CheckOut 12:00 AM MoSu 168,95 239,80 348,80 011,99 Inclusive 011,99 Inclusive MoSu 176,58 255,06 371,69 011,99 Inclusive 011,99 Inclusive Continental halfboard

More information

Aviation Software. DFT Database API. Prepared by: Toby Wicks, Software Engineer Version 1.1

Aviation Software. DFT Database API. Prepared by: Toby Wicks, Software Engineer Version 1.1 DFT Database API Prepared by: Toby Wicks, Software Engineer Version 1.1 19 November 2010 Table of Contents Overview 3 Document Overview 3 Contact Details 3 Database Overview 4 DFT Packages 4 File Structures

More information

[ Taiwan High Speed Rail ] Tour Code: ATL181 ATL184

[ Taiwan High Speed Rail ] Tour Code: ATL181 ATL184 [ Taiwan High Speed Rail ] Tour Code: ATL181 ATL184 * Information Tour Name [ Taiwan High Speed Rail ] Visiting Departure Theme Taiwan Daily Pass Price Valid Jan. 01, 2018 Dec. 31, 2018 Price (Pass Type)

More information

AirFrance KLM - AirShopping

AirFrance KLM - AirShopping AirFrance KL - AirShopping This document describes the AirFrance KL AirShopping Service Document Version: 1.0 Document Status: approved Date of last Update: 26/10/2017 Document Location: https://developer.airfranceklm.com/

More information

VARIBLE COMMISSIONS OVERVIEW

VARIBLE COMMISSIONS OVERVIEW VARIBLE COMMISSIONS OVERVIEW The BSPConnect Variable Commission System provides the airline with the ability to audit commissions. These may be simple or complex, based on route, agent and also: A. Commission

More information

APPROVED BY: Director of the Sales Department of PJSC Aeroflot on May 30, 2016

APPROVED BY: Director of the Sales Department of PJSC Aeroflot on May 30, 2016 APPROVED BY: Director of the Sales Department of PJSC Aeroflot on May 30, 2016 ADM Policy of PJSC Aeroflot for Agents under Direct Agency Agreements, BSP Agents of All Countries (excluding Russia, CIS*,

More information

Sabre: Refund and Exchange Customer Questions

Sabre: Refund and Exchange Customer Questions Sabre: Refund and Exchange Customer Questions The following questions were raised by the audience during the Refund and Exchange Overview presented by Sabre 01 November 2017. Questions have been consolidated

More information

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure)

Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Configuring a Secure Access etrust SiteMinder Server Instance (NSM Procedure) Within the Secure Access device, a SiteMinder instance is a set of configuration settings that defines how the Secure Access

More information

USER GUIDE DOCUMENT VIETJET AIR FLIGHTVIEW

USER GUIDE DOCUMENT VIETJET AIR FLIGHTVIEW USER GUIDE DOCUMENT VIETJET AIR FLIGHTVIEW VERSION CHANGE LOG Version Description of Change Author Date 0.1 Beginning of the Document Thanh Hien December 2018 1 TABLE OF CONTENTS USER GUIDE DOCUMENT VIETJET

More information

The Westin Resort & Spa ***** (Cancún)

The Westin Resort & Spa ***** (Cancún) EMAIL ***** (Cancún) season 04JAN17 22APR17 CheckIn 3:00 PM CheckOut 12:00 AM (AI) (AI) MoSu 189,38 189,38 241,26 03,99 Inclusive 411,99 15,57 MoSu 215,32 215,32 267,20 03,99 Inclusive 411,99 15,57 MoSu

More information

Additional Boarding Setup and Daily Operations Guide

Additional Boarding Setup and Daily Operations Guide Additional Boarding Setup and Daily Operations Guide PetExec allows you to set holiday boarding prices, adjust kennel locations and boarding prices on a day-to-day basis, and accept boarding deposits that

More information

TRENITALIA DIRECT CONNECTION 18 May, 2016

TRENITALIA DIRECT CONNECTION 18 May, 2016 TRENITALIA DIRECT CONNECTION 8 May, 06 Introduction WHATS NEW! From January 06 Euronet will be connected directly to the Trenitalia (Italy) inventory Some of the new features are Access to complete Trenitalia

More information

2/11/2010 7:08 AM. Concur Travel Service Guide Southwest Direct Connect

2/11/2010 7:08 AM. Concur Travel Service Guide Southwest Direct Connect 2/11/2010 7:08 AM Concur Travel Service Guide Southwest Direct Connect Overview... 3 Benefits... 3 How it Works... 4 Application of Credit... 11 Trip Cancel... 12 Allow Cancel and Rebook... 15 Error Messaging...

More information

British Airways Terms and Conditions Valid until 09th September 2018

British Airways Terms and Conditions Valid until 09th September 2018 Worldwide All Classes valid from 28th November, 2017 to 09th September, 2018 Seasonality Low Season except High Season including Minimum Group size Euro / World Traveller: 10 passengers Word Traveller

More information

SmartFares User Guide

SmartFares User Guide Welcome to Air Tickets The Air Tickets website is the gateway to our SmartFares database. SmartFares automatically locates up-to-the-minute fares from virtually every airline in the world. With its user

More information

DATA APPLICATION CATEGORY 25 FARE BY RULE

DATA APPLICATION CATEGORY 25 FARE BY RULE DATA APPLICATION CATEGORY 25 FARE BY RULE The information contained in this document is the property of ATPCO. No part of this document may be reproduced, stored in a retrieval system, or transmitted in

More information

Bank Holiday Calculator (Oracle Package)

Bank Holiday Calculator (Oracle Package) Bank Holiday Calculator (Oracle Package) Author: G S Chapman Date: 8 th July 2011 Version: 1.2 Location of Document: DOCUMENT HISTORY Version Date Changed By: Remarks 1.2 08/07/11 G S Chapman Added details

More information

Virgin Atlantic Airways Limited Global BSP Agency Debit Memo Policy

Virgin Atlantic Airways Limited Global BSP Agency Debit Memo Policy Virgin Atlantic Airways Limited Global BSP Agency Debit Memo Policy Introduction In accordance with IATA Resolution 850m, the Virgin Atlantic Airways Ltd Global BSP Agency Debit Memo Policy clarifies the

More information

New Distribution Capability (NDC)

New Distribution Capability (NDC) Together Let s Build Airline Retailing Accountable Document Validated official document (such as any type of an airline ticket, or a Standard Traffic Document (STD) or payment voucher) that has a value

More information

Supports full integration with Apollo, Galileo and Worldspan GDS.

Supports full integration with Apollo, Galileo and Worldspan GDS. FEATURES GENERAL Web-based Solution ALL TRAVELPORT GDS Supports full integration with Apollo, Galileo and Worldspan GDS. GRAPHICAL INTUITIVE WEB EXPERIENCE Intuitive web experience for both GDS expert

More information

Condor Flugdienst GmbH Thomas Cook Group Airlines Agency Debit Memo (ADM) Last updated: 2018 November 25

Condor Flugdienst GmbH Thomas Cook Group Airlines Agency Debit Memo (ADM) Last updated: 2018 November 25 Condor Flugdienst GmbH Thomas Cook Group Airlines Agency Debit Memo (ADM) Last updated: 2018 November 25 Table of Content 1. General Information 2 2. Reasons for ADMs 3 2.1. Bookings 3 2.2. Ticketing 5

More information

MBTA-REALTIME API FOR PERFORMANCE DATA DOCUMENTATION (V 0.9)

MBTA-REALTIME API FOR PERFORMANCE DATA DOCUMENTATION (V 0.9) MBTA MBTA-REALTIME API FOR PERFORMANCE DATA DOCUMENTATION (V 0.9) MARCH 28, 2016 Table of Contents 1. OVERVIEW... 3 2. QUERIES... 3 2.1 Thresholds for Performance Measurement... 4 2.2 Performance Queries...

More information

Enrollment & Benefits

Enrollment & Benefits http://www.omanair.com/frequent-flyers/faqs-0 Home > frequent-flyers > faqs-0 FAQs Enrollment & Benefits How can I become a member of Sindbad? You can enrol online using the Join Sindbad option. Who can

More information

BLUE PANORAMA AIRLINES POLICY ON AGENT DEBIT MEMO (ADM)

BLUE PANORAMA AIRLINES POLICY ON AGENT DEBIT MEMO (ADM) BLUE PANORAMA AIRLINES POLICY ON AGENT DEBIT MEMO (ADM) ADM Policy Background Blue Panorama Airlines considers you as our key partners in business. We seek your support and cooperation to effectively implement

More information

Part 1. Part 2. airports100.csv contains a list of 100 US airports.

Part 1. Part 2. airports100.csv contains a list of 100 US airports. .. Fall 2007 CSC/CPE 365: Database Systems Alexander Dekhtyar.. Lab 8: PL/SQL Due date: Thursday, November 29, midnight Assignment Preparation The main part of this assignment is to be done in teams. The

More information

To display the REVNET tool see this section: HOW TO ACCESS REVNET

To display the REVNET tool see this section: HOW TO ACCESS REVNET WHERE TO BOOK ACV Products can be booked online through Revnet, GDS Web Shopping and Aircanadavacations.com/agents. Each system offer different advantages and limitations. REVNET available through our

More information

InHotel. Installation Guide Release version 1.6.0

InHotel. Installation Guide Release version 1.6.0 InHotel Installation Guide Release version 1.6.0 Contents Contents... 2 Revision History... 5 Introduction... 6 Glossary of Terms... 7 Licensing... 8 Requirements... 9 Licensing the application... 9 60

More information

Guidelines for Life Limited Part (LLP) Movement History Sheet

Guidelines for Life Limited Part (LLP) Movement History Sheet Guidelines for Life Limited Part (LLP) Movement History Sheet 1. Background 1.1. History Transfer of LLPs between owners/operators has in the past caused issues and time consuming tasks. Operators have

More information

ELOQUA INTEGRATION GUIDE

ELOQUA INTEGRATION GUIDE ELOQUA INTEGRATION GUIDE VERSION 2.2 APRIL 2016 DOCUMENT PURPOSE This purpose of this document is to guide clients through the process of integrating Eloqua and the WorkCast Platform and to explain the

More information

PILOT PORTAL. User s Manual for registered users. of the COMSOFT Aeronautical Data Access System (CADAS) ARO Tallinn

PILOT PORTAL. User s Manual for registered users. of the COMSOFT Aeronautical Data Access System (CADAS) ARO Tallinn PILOT PORTAL of the COMSOFT Aeronautical Data Access System (CADAS) User s Manual for registered users For assistance contact: ARO Tallinn Phone: +372 6 258 282, +372 6258 293, +372 6 058 905 Fax: +372

More information

USER GUIDE Cruises Section

USER GUIDE Cruises Section USER GUIDE Cruises Section CONTENTS 1. WELCOME.... CRUISE RESERVATION SYSTEM... 4.1 Quotes and availability searches... 4.1.1 Search Page... 5.1. Search Results Page and Cruise Selection... 6.1. Modifying

More information

Condor Flugdienst GmbH Thomas Cook Group Airlines Agency Debit Memo (ADM) Last updated: 2016 August, 23

Condor Flugdienst GmbH Thomas Cook Group Airlines Agency Debit Memo (ADM) Last updated: 2016 August, 23 Condor Flugdienst GmbH Thomas Cook Group Airlines Agency Debit Memo (ADM) Last updated: 2016 August, 23 Table of Content 1. General Information 2 2. Reasons for ADMs 3 2.1. Bookings 3 2.2.Ticketing 5 3.

More information

Online Guest Accommodation Booking System

Online Guest Accommodation Booking System DIRECTORATE OF ESTATES, MINISTRY OF URBAN DEVELOPMENT, GOVERNMENT OF INDIA Online Guest Accommodation Booking System [User Manual For Booking Agency] Document Prepared By Sunil Babbar, Scientist C, NIC

More information

Paperless Aircraft Operations - IATA s Vision and Actions - Chris MARKOU IATA Operational Costs Management

Paperless Aircraft Operations - IATA s Vision and Actions - Chris MARKOU IATA Operational Costs Management Paperless Aircraft Operations - IATA s Vision and Actions - Chris MARKOU IATA Operational Costs Management IATA s Paperless Initiatives Passenger Reservations, Ticketing and Airport Processes e-ticketing

More information

HOTEL PROGRAM REQUIREMENTS.

HOTEL PROGRAM REQUIREMENTS. HOTEL PROGRAM REQUIREMENTS www.owners.org/freenights freenights@ihgowners.org TABLE OF CONTENTS LIST OF DEFINED TERMS... 3 OVERVIEW OF HOTEL PROTECTIONS...4 HOTEL PROGRAM REQUIREMENTS...5-12 1. INIOA Rate

More information

Annex 5: Technical Terms and Conditions for Lot IV: Committee of the Regions

Annex 5: Technical Terms and Conditions for Lot IV: Committee of the Regions Annex 5: Technical Terms and Conditions for Lot IV: Committee of the Regions Table of Contents 1 Booking transport, accommodation and related services 2 2 Chartered transport 2 3 Issuing and delivering

More information

Concur Travel: Southwest Direct Connect

Concur Travel: Southwest Direct Connect Concur Travel: Southwest Direct Connect Travel Service Guide Applies to Concur Travel: Professional/Premium edition TMC Partners Direct Customers Standard edition TMC Partners Direct Customers Contents

More information

LogTen Pro API. logten://method/{json_payload}

LogTen Pro API. logten://method/{json_payload} LogTen Pro API proudly presents the LogTen Pro Application Programming Interface (API) v1.1 which allows third-party applications to interact with LogTen Pro using a straight forward URL based approach

More information

2016 European Cruise Star Creator Trip Registration FAQs

2016 European Cruise Star Creator Trip Registration FAQs 2016 European Cruise Star Creator Trip Registration FAQs 1. When can I start to register? You can start to register once you have completed four (4) months of your qualified tier as a Star, New Star, or

More information

Video Media Center - VMC 1000 Getting Started Guide

Video Media Center - VMC 1000 Getting Started Guide Video Media Center - VMC 1000 Getting Started Guide Video Media Center - VMC 1000 Getting Started Guide Trademark Information Polycom, the Polycom logo design, Video Media Center, and RSS 2000 are registered

More information

Lesson: Total Time: Content: Question/answer:

Lesson: Total Time: Content: Question/answer: Go! Lesson: Total Time: Content: Question/answer: Worldspan 60 minutes 45 minutes 15 minutes Lesson Description: This lesson is designed to review the booking using cruise options, search, fare codes and

More information

TILOS & P3 DATA INTERFACE PAUL E HARRIS EASTWOOD HARRIS PTY LTD. 24 July 2007

TILOS & P3 DATA INTERFACE PAUL E HARRIS EASTWOOD HARRIS PTY LTD. 24 July 2007 P.O. Box 4032 EASTWOOD HARRIS PTY LTD Tel 61 (0)4 1118 7701 Doncaster Heights ACN 085 065 872 Fax 61 (0)3 9846 7700 Victoria 3109 Project Management Systems Email: harrispe@eh.com.au Australia Software

More information

Quikticket User Guide. Add to favourites or access via

Quikticket User Guide. Add to favourites   or access via Quikticket User Guide Signing in Add to favourites https://ftg.quik.travel or access via www.first-travel-group.co.nz Note : This site requires up to date Browsers Out of date browsers are not supported

More information

Fare conditions international train tickets. United Kingdom

Fare conditions international train tickets. United Kingdom Fare conditions international train tickets United Kingdom Fare conditions for your International train tickets Because we want to provide you with the best possible information about your international

More information

Accompanied Travel Enhancements. Product Advisory. May 11, 2007

Accompanied Travel Enhancements. Product Advisory. May 11, 2007 Accompanied Travel Enhancements Product Advisory May 11, 2007 2006 Galileo International. All rights reserved. Information in this document is subject to change without notice. No part of this publication

More information

Agenda. Introduction of BA/Expedia disruption PoC. Use cases / Flow diagram

Agenda. Introduction of BA/Expedia disruption PoC. Use cases / Flow diagram Agenda Introduction of BA/Expedia disruption PoC Use cases / Flow diagram Highlights of changes per message OrderChangeNotif OrderView OrderHistory OrderReshop OrderChange/OrderCancel AOB Introduction

More information

e-airportslots Tutorial

e-airportslots Tutorial e-airportslots Tutorial 2017 by IACS (International Airport Coordination Support) page 1 Table of contents 1 Browser compatibility... 4 2 Welcome Screen... 4 3 Show Flights:... 4 4 Coordination... 7 4.1

More information

Air France KLM ADM Policy In compliance with IATA resolution 850m

Air France KLM ADM Policy In compliance with IATA resolution 850m Applicable as per January 2017 issuances - In accordance with IATA resolution 850m Country - Ukraine 1. General Scope policies ensure fare rules and other agreements between the Travel Agent and AFKL are

More information

Travelport Ticket Manager for Asia (TTMA) Version

Travelport Ticket Manager for Asia (TTMA) Version Travelport Ticket Manager for Asia (TTMA) Version 2.2.2.8 Travelport Ticket Manager for Asia (TTMA) Features Void ticket with or without PNR Revalidate ticket with ticketed or new booking PNR Ticket reissue

More information

e-ticketing and QREX Course (Revision 01)

e-ticketing and QREX Course (Revision 01) e-ticketing and QREX Course (Revision 01) Address: 24 Alkeou St, Engomi P.O.Box 25326, 1308 Nicosia Cyprus Tel: 357-22664515, Fax: 357-22664502, SITA:NICXZCY e-mail:zenon@cyprusair.com.cy Copyright 2006

More information

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry

DART. Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel STAFF TRAVEL SIMPLIFIED. Straightforward, easy to use staff travel management system for the airline industry DART Duty & Recreation Travel 2 STAFF TRAVEL COULDN T GET EASIER

More information

QuickTrav Invoicing Carbon Footprint (v1.7x8+)

QuickTrav Invoicing Carbon Footprint (v1.7x8+) Index 1. Overview 2. Setup 3. Calculations 3.1. Air Tickets 3.2. Car Hire 3.3. Accommodation 4. Queries 4.1. By Line 4.2. By Segment 5. Offsetting 6. About Cleaner Climate Last Updated: LCK 28/10/2013(v1.10B5)

More information

Air France KLM ADM Policy In compliance with IATA resolution 850m

Air France KLM ADM Policy In compliance with IATA resolution 850m Applicable as from January 2018 issuances Air France KLM ADM Policy - Letter for external communication to Travel Agents In accordance with IATA resolution 850m 1. General Scope policies ensure fare rules

More information

Tel: Fax: Abacus: W648 Galileo: QHJ Amadeus: HKGH Tel: Fax: Abacus: 1S18 Galileo: QHJ Amadeus: HKGH22339

Tel: Fax: Abacus: W648 Galileo: QHJ Amadeus: HKGH Tel: Fax: Abacus: 1S18 Galileo: QHJ Amadeus: HKGH22339 Tour code : HKG0300FF500 for Rule R301 & R305 V2012-005 Tour code : HKG0301FF500 for Rule R302 30/07/2012 (Min/Max Stay) Period of Travel MSP to Sub-agent RSP To Pax Class Code HKG - CX - BKK - CX - HKG

More information

Be fast with fares. Be first with customers

Be fast with fares. Be first with customers Be fast with fares. Be first with customers Agenda The challenges of fare management Get on the fast track The elements of success 2 Facing the challenges of fare management Keeping tariffs and rules up

More information

RV10 Weight and Balance

RV10 Weight and Balance RV10 Weight and Balance Author: Greg Hale -------- ghale5224@aol.com Rev. Date: 4/15/2008 11:43:34 AM The RV10 weight and balance program was designed for the Van's RV10 aircraft. The program includes

More information

Cathay Pacific Airways. BSP Electronic Miscellaneous Document (EMD) for Travel Agents

Cathay Pacific Airways. BSP Electronic Miscellaneous Document (EMD) for Travel Agents Cathay Pacific Airways BSP Electronic Miscellaneous Document (EMD) for Travel Agents Prepared by: Sales & Distribution Last updated: Apr 2013 Version: 1.0 1 P a g e Table of Contents 1 Introduction...

More information

Help Document for utsonmobile - Windows Phone

Help Document for utsonmobile - Windows Phone Help Document for utsonmobile - Windows Phone Indian Railway is introducing the facility of booking unreserved suburban tickets on smartphones. The application has been developed in-house by Centre for

More information

ICAO Bay of Bengal ATS Coordination Group ATFM Task Force

ICAO Bay of Bengal ATS Coordination Group ATFM Task Force For effective date July 2007 AIRAC 5 July 2007(0707051200UTC) ICAO Bay of Bengal ATS Coordination Group ATFM Task Force MODEL AIP SUPPLEMENT BAY OF BENGAL ATFM PROCEDURES Note: Text identified as (ANSPs)

More information

Release Note

Release Note Release Note 2018.05 Release Note 2018.05 Content onesto Release Note 2018.05 02 GENERAL I. Reduced Distance When Printing The Travel Expense Report... 03 II. Travel Policy Deviation Report Extension...

More information

Kristina Ricks ISYS 520 VBA Project Write-up Around the World

Kristina Ricks ISYS 520 VBA Project Write-up Around the World VBA Project Write-up Around the World Initial Problem Online resources are very valuable when searching for the cheapest flights to any particular location. Sites such as Travelocity.com, Expedia.com,

More information

EXHIBITORS WITH BOOTH SPACE OVER 1501 SQ. FT.

EXHIBITORS WITH BOOTH SPACE OVER 1501 SQ. FT. AAOS 2019 Housing Rules and Regulations EXHIBITORS WITH BOOTH SPACE OVER 1501 SQ. FT. In an effort to ensure that sleeping rooms are properly allocated and available to both exhibitors and meeting attendees,

More information

MEMBERSHIP, ENTERING INTO AN AGREEMENT AND RESPONSIBILITIES OF THE COMPANY

MEMBERSHIP, ENTERING INTO AN AGREEMENT AND RESPONSIBILITIES OF THE COMPANY GENERAL These terms and conditions shall apply to the Finnair Corporate Programme (hereinafter Programme ). Apart from these terms and conditions, no other rules are applicable. The Programme is designed

More information

Welcome to. Orientation. Travel Planners for the Finest Bands, Choirs and Orchestras in the World

Welcome to. Orientation. Travel Planners for the Finest Bands, Choirs and Orchestras in the World Welcome to Orientation Travel Planners for the Finest Bands, Choirs and Orchestras in the World A little bit about Music Travel Consultants Founded in 1987 Sales Staff Consists Exclusively of Past Music

More information

This protocol is designed for the isolation of 96 plasmid DNA samples from 1.3ml bacterial cultures. Yield is up to 6µg.

This protocol is designed for the isolation of 96 plasmid DNA samples from 1.3ml bacterial cultures. Yield is up to 6µg. ====================================================== Date : Monday, November 14, 2005 10:31 File Name :.PRO Full Name : Abstract : QIAprepTurbo 96 QIAsoft 4.1.3, Version 6.1, 18.12.2001, EW, PK, HL,

More information

Pelican AMR Gateway User Guide

Pelican AMR Gateway User Guide Pelican AMR Gateway User Guide Document Reference: 8194 June 2016 Version: 2 Version Date Author Changes Number 1 Feb 2014 Bettina Rubek-Slater 2 Jun 2016 Sam Smith Branding updated API section updated

More information

SUPPLEMENT OCTOBER CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON REVISION 8 68FM-S17-08

SUPPLEMENT OCTOBER CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON REVISION 8 68FM-S17-08 MODEL 680 680-0001 AND ON CITATION PERFORMANCE CALCULATOR (CPCalc) COPYRIGHT 2005 CESSNA AIRCRAFT COMPANY WICHITA, KANSAS, USA 68FM-S17-08 REVISION 8 17 OCTOBER 2005 7 MARCH 2014 U.S. S17-1 SECTION V -

More information

AIR MADAGASCAR ADM POLICY

AIR MADAGASCAR ADM POLICY Page 1 sur 5 AIR MADAGASCAR ADM POLICY Agency Debit Memos ADM Air Madagascar Policy Update : 18 June 2014 Effective date: 01st July 2014 Background AIR MADAGASCAR publishes this document in order to provide

More information

PSS MVS 7.15 announcement

PSS MVS 7.15 announcement PSS MVS 7.15 announcement New Mainframe Software Print SubSystem MVS 7.15 AFP printing and AFP2PDF conversion Version 7.15 Bar Code + PDF Update with additional features and fixes 2880 Bagsvaerd Tel.:

More information

SUPPLEMENT AUGUST CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL THRU FM-S51-00 S51-1 U.S.

SUPPLEMENT AUGUST CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL THRU FM-S51-00 S51-1 U.S. MODEL 525 525-0001 THRU -0359 CITATION PERFORMANCE CALCULATOR (CPCalc) COPYRIGHT 2007 CESSNA AIRCRAFT COMPANY WICHITA, KANSAS, USA 14 AUGUST 2007 U.S. S51-1 SECTION V - SUPPLEMENTS CITATION PERFORMANCE

More information

BUFFALO AIRWAYS VIRTUAL

BUFFALO AIRWAYS VIRTUAL BUFFALO AIRWAYS VIRTUAL Operations Manual Our History Buffalo Airways Virtual Operations Manual Page 1 Buffalo Airways Virtual was created in early 2010 by Thomas Emms & Randy Kearnes. Inspired by the

More information

SUPPLEMENT 3 11 APRIL CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON 510FM-S3-00 S3-1 U.S.

SUPPLEMENT 3 11 APRIL CITATION PERFORMANCE CALCULATOR (CPCalc) MODEL AND ON 510FM-S3-00 S3-1 U.S. 510-0001 AND ON CITATION PERFORMANCE CALCULATOR (CPCalc) COPYRIGHT 2007 CESSNA AIRCRAFT COMPANY WICHITA, KANSAS, USA 11 APRIL 2007 U.S. S3-1 CITATION PERFORMANCE CALCULATOR (CPCalc) Use the Log of Effective

More information

General Terms and Conditions (GTC) of Germania Fluggesellschaft mbh ("Germania")

General Terms and Conditions (GTC) of Germania Fluggesellschaft mbh (Germania) General Terms and Conditions (GTC) of Germania Fluggesellschaft mbh ("Germania") updated: 30 th November 2017 1. Booking The booking can be made via the internet www.flygermania.com, telephone (service

More information

Travelport Aggregated Shopping (TAS)

Travelport Aggregated Shopping (TAS) Direct Payment Carriers may be booked in Travelport Smartpoint using traditional availability and shopping requests. All low fare search and TAS (Travelport Aggregated Search) searches will be routed by

More information