action hetras_certification_availability_get { label: "Gets the availability and occupancy for a specific hotel and timespan." description: "Read past occupancy and future availability for a specific hotel. You can also request the breakdown per room type." provider: hetras_certification method: GET path: "/api/booking/v0/availability" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } expand: { type: "string" } from: { type: "string" } hotelId: { type: "string" } inlinecount: { type: "string" } skip: { type: "string" } to: { type: "string" } top: { type: "string" } } required: ["App-Id", "App-Key", "from", "hotelId", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }