action hetras_certification_bookings_post_room_assignment { label: "Assign a room to a reservation." description: "By default this API call assigns a random room, which has the proper room type, is not already assigned \n to another reservation or has any maintenance status set for the stay period of the underlying reservation. If the \n arrival date for the underlying reservation is the current business day dirty rooms are excluded by default. For reservation \n arriving on any latter day the room condition is not taken into account.
\n By specifiying the room selection criteria in the request body you can influence which room will be assigned. See the request model \n for further details.
\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/{confirmationId}/reservations/{reservationNumber}/assign_room" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } confirmationId: { type: "string" } reservationNumber: { type: "string" } } required: ["App-Id", "App-Key", "confirmationId", "reservationNumber"] additionalProperties: false } output: { type: "object" additionalProperties: true } }