cancelReservations
Cancel specific reservations on the Mews MCP server by providing reservation IDs, cancellation reason, notes, and fee charging preference.
Instructions
Cancels specified reservations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
CancellationReason | No | Reason for cancellation | |
ChargeCancellationFee | No | Whether to charge cancellation fee | |
Notes | No | Cancellation notes | |
ReservationIds | Yes | Array of reservation IDs to cancel |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"CancellationReason": {
"description": "Reason for cancellation",
"type": "string"
},
"ChargeCancellationFee": {
"description": "Whether to charge cancellation fee",
"type": "boolean"
},
"Notes": {
"description": "Cancellation notes",
"type": "string"
},
"ReservationIds": {
"description": "Array of reservation IDs to cancel",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
}
},
"required": [
"ReservationIds"
],
"type": "object"
}