action hetras_certification_daily_rates_get_daily_rates { label: "Get a list of daily rates given a hotel Id, a channel code and a date range." description: "With the rates request you can get a list of different daily rates. You will have to at least \n specify the hotel, the channel code, and a calendar range. The channel code will define which rates will be \n returned based on the access control configuration for the rates. Additionally rate plan codes may be specified in \n the request in order to limit only those rates of the given plans, if they are not specified, it will return all the public rate plans. \n If requested the caller may specify whether he wants policies or not." provider: hetras_certification method: GET path: "/api/booking/v0/daily_rates" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } channelCode: { type: "string" } expand: { type: "string" } from: { type: "string" } hotelId: { type: "string" } inlinecount: { type: "string" } ratePlanCodes: { type: "string" } skip: { type: "string" } to: { type: "string" } top: { type: "string" } } required: ["App-Id", "App-Key", "channelCode", "from", "hotelId", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }