action hetras_certification_bookings_get_reservation { label: "Load a specific reservation from a booking." description: "With this request you can load one specific reservation done with one booking request." provider: hetras_certification method: GET path: "/api/booking/v0/bookings/{confirmationId}/reservations/{reservationNumber}" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } confirmationId: { type: "string" } exclude: { type: "string" } expand: { type: "string" } reservationNumber: { type: "string" } } required: ["App-Id", "App-Key", "confirmationId", "reservationNumber"] additionalProperties: false } output: { type: "object" additionalProperties: true } }