Create Offers
Mutation Overview
The createOffersSetUp mutation allows you to create new offers for an existing hotel rate in Inventory. The returned fields include:
codedescriptionisActiverateCoderoomCodesmontuewedthufrisatsunapplyFromapplyTonumberOfNightsminLosmaxLosnightsType
1. Criteria
When building your mutation, you need to provide the following input fields:
Mandatory Input
clientCodesupplierCodehotelCoderateCodeofferscodedescriptionisActivenightsTypenumberOfNights
Optional Input
contextCodeoffersroomCodesmontuewedthufrisatsunapplyFromapplyTominLosmaxLos
2. Settings
To create an offer, ensure that all mandatory fields are properly filled out and associate the offer with the correct hotel and rate.
Response Considerations
The mutation returns the created offer along with success status and possible advise messages.
OffersRs (OBJECT)
offers(OfferDto) - A collection of created offers.code(String) - The offer code.description(String) - Description of the offer.isActive(Boolean) - Indicates if the offer is active.rateCode(String) - The rate code associated with the offer.nightsType(Enum of NightsType) - The type of nights the offer applies to.numberOfNights(Int) - Number of nights the offer applies to.applyFrom(DateTime) - Start date when the offer applies.applyTo(DateTime) - End date when the offer applies.minLos(Int) - Minimum length of stay required.maxLos(Int) - Maximum length of stay allowed.roomCodes(String) - The room codes associated with the offer.mon(Boolean) - Applies on Monday.tue(Boolean) - Applies on Tuesday.wed(Boolean) - Applies on Wednesday.thu(Boolean) - Applies on Thursday.fri(Boolean) - Applies on Friday.sat(Boolean) - Applies on Saturday.sun(Boolean) - Applies on Sunday.
success(Boolean) - Indicates if the operation was successful.adviseMessages(AdviseMessage) - Messages related to the operation.
Mutation Inputs
InventoryOffersSetupCreateInput (INPUT_OBJECT)
Offers setup create input.
Offers setup create input.
clientCode * (String)
Client code.
supplierCode * (String)
Travelgate Supplier/Channel code.
offers * (InventoryOfferSetupInput)
Offers input data. nightsType * (NightsType) The type of the offer.
Possible values: code * (String) The code of the offer. description * (String) The description of the offer. Indicates whether the offer applies on Monday. Indicates whether the offer applies on Tuesday. Indicates whether the offer applies on Wednesday. Indicates whether the offer applies on Thursday. Indicates whether the offer applies on Friday. Indicates whether the offer applies on Saturday. Indicates whether the offer applies on Sunday. isActive * (Boolean) Indicates whether the offer is active. The start date when the offer applies. The end date when the offer applies. numberOfNights * (Int) The number of nights for the offer. The minimum length of stay for the offer. The maximum length of stay for the offer. The room codes associated with the offer. Each code represents a specific room.
CodeFIRST: Apply to the first nights.LAST: Apply to the last nights.CHEAPEST: Apply to the cheapest nights.mon(Boolean)
tue(Boolean)
wed(Boolean)
thu(Boolean)
fri(Boolean)
sat(Boolean)
sun(Boolean)
applyFrom(DateTime)
applyTo(DateTime)
minLos(Int)
maxLos(Int)
roomCodes(String)
hotelCode * (String)
Code associated with the hotel.
contextCode(String)
Context code.
rateCode * (String)
Rate Code .
Returned Fields
OffersRs (OBJECT)
Represents a response object for offers.
Represents a response object for offers.
adviseMessages(AdviseMessage)
Gets or sets the list of advise messages associated with the offers.
See AdviseMessage. code * (ID) AM code: The following codes can be returned: description * (String) Error description level * (AdviseMessageLevel) Indicates the level of importance of the message.
Possible values: ERROR, WARN, INFO.
Possible values: Specify the external message. External code. message * (String) External message. correlationID * (ID) Identifier to investigate the cause of the error.WARN: Warning message.ERROR: Error message.INFO: Info message.external(ExternalMessage)
code(String)
offers(OfferDto)
Gets or sets the list of offers.
See OfferDto. The rate code of the offer. The offer code. isActive * (Boolean) Indicates whether the offer is active. The description of the offer. nightsType * (NightsType) The type of the offer.
Possible values: The maximum length of stay for the offer. The minimum length of stay for the offer. The start date when the offer applies. The end date when the offer applies. The number of free nights for the offer. The room codes associated with the offer. Indicates whether the offer applies on Monday. Indicates whether the offer applies on Tuesday. Indicates whether the offer applies on Wednesday. Indicates whether the offer applies on Thursday. Indicates whether the offer applies on Friday. Indicates whether the offer applies on Saturday. Indicates whether the offer applies on Sunday.rateCode(String)
code(String)
description(String)
FIRST: Apply to the first nights.LAST: Apply to the last nights.CHEAPEST: Apply to the cheapest nights.maxLos(Int)
minLos(Int)
applyFrom(DateTime)
applyTo(DateTime)
numberOfNights(Int)
roomCodes(String)
mon(Boolean)
tue(Boolean)
wed(Boolean)
thu(Boolean)
fri(Boolean)
sat(Boolean)
sun(Boolean)
success * (Boolean)
Gets a value indicating whether the operation was successful.
Examples
Create a new offer for a rate
With the following mutation, we are going to create a new offer available for all rooms linked to a rate that gives away the cheapest night of the booking if the lenght of stay of the reservation is at least a week.