action hetras_certification_bookings_get_booking { label: "Load all reservations for one booking by confirmation id." description: "A booking groups all reservations done in one single request and can be identified by the confirmation id. \n Guests usually use the confirmation id to check in at the kiosk, on the website or mobile device. In hetras \n all reservations of one booking share the room type, rate plan and number of guests per room." provider: hetras_certification method: GET path: "/api/booking/v0/bookings/{confirmationId}" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } confirmationId: { type: "string" } exclude: { type: "string" } expand: { type: "string" } } required: ["App-Id", "App-Key", "confirmationId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }