action hetras_certification_bookings_create_booking { label: "Create a new booking." description: "Create a new booking as defined in the requests payload. You can get more information about the payload if you check out the \n documentation for the reservation request model.
\n Please also have a look at the Tutorials.
\n For more details on how the API responds to errors please check our documentation on \n Error Handling." provider: hetras_certification method: POST path: "/api/booking/v0/bookings" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } sendConfirmation: { type: "string" } } required: ["App-Id", "App-Key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }