action hetras_certification_rates_get { label: "Get a list of room offers for the specified guest stay details." description: "With the rates request you can get a list of different rate offers per room type. You will have to at least \n specify the hotel, the arrival and departure date, number of adults per room and the channel code. The channel code \n will define which rates will be returned based on the access control configuration for the rates." provider: hetras_certification method: GET path: "/api/booking/v0/rates" 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" } groupCode: { type: "string" } hotelId: { type: "string" } ratePlanCode: { type: "string" } roomType: { type: "string" } rooms: { type: "string" } } required: ["App-Id", "App-Key", "adults", "arrivalDate", "channelCode", "departureDate", "hotelId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }