action hetras_certification_bookings_cancel_reservation {
label: "Cancel one reservation."
description: "This request will cancel one specific reservation. It will show up in the hetras UI in the Cancellation and NoShow
\n processing screen and it will be up to the hotel staff to either charge or waive the cancellation fee.
\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}/cancel"
encoding: json
input: {
type: "object"
properties: {
"App-Id": {
type: "string"
}
"App-Key": {
type: "string"
}
confirmationId: {
type: "string"
}
reservationNumber: {
type: "string"
}
sendConfirmation: {
type: "string"
}
}
required: ["App-Id", "App-Key", "confirmationId", "reservationNumber"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}