action hetras_certification_addons_get { label: "Get a list of offers for addon services for the specified guest stay details." description: "With the addons request you can get a list of offers for addon services available for a specific rate, room type \n and guest stay details.The channel code will define which rates will be returned based on the access control \n configuration for related rates." provider: hetras_certification method: GET path: "/api/booking/v0/addons" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } adults: { type: "string" } arrivalDate: { type: "string" } channelCode: { type: "string" } departureDate: { type: "string" } expand: { type: "string" } hotelId: { type: "string" } ratePlanCode: { type: "string" } roomType: { type: "string" } rooms: { type: "string" } } required: ["App-Id", "App-Key", "adults", "arrivalDate", "channelCode", "departureDate", "hotelId", "ratePlanCode", "roomType", "rooms"] additionalProperties: false } output: { type: "object" additionalProperties: true } }