updateReservations
Modify reservation details such as check-in/out dates, notes, state, and guest counts in the Mews hospitality platform. Ensure accurate updates for streamlined reservations management.
Instructions
Updates reservation properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ReservationUpdates | Yes | Array of reservation update objects |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"ReservationUpdates": {
"description": "Array of reservation update objects",
"items": {
"properties": {
"AdultCount": {
"description": "Number of adults",
"type": "number"
},
"ChildCount": {
"description": "Number of children",
"type": "number"
},
"EndUtc": {
"description": "Check-out date/time (ISO 8601)",
"type": "string"
},
"Notes": {
"description": "Reservation notes",
"type": "string"
},
"ReservationId": {
"description": "Unique identifier of the reservation to update",
"type": "string"
},
"SpaceCategoryId": {
"description": "Space category ID",
"type": "string"
},
"StartUtc": {
"description": "Check-in date/time (ISO 8601)",
"type": "string"
},
"State": {
"description": "Reservation state",
"type": "string"
}
},
"required": [
"ReservationId"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"ReservationUpdates"
],
"type": "object"
}