exportReservations
Export reservations from Mews MCP in CSV, JSON, or Excel formats within a specific date range, ID list, or state filter. Manage data efficiently for reporting or integration.
Instructions
Exports reservations in the specified format and period
Input Schema
Name | Required | Description | Default |
---|---|---|---|
EndUtc | Yes | End date for export (ISO 8601) | |
Format | Yes | Export format (CSV, JSON, etc.) | |
ReservationIds | No | Specific reservation IDs to export | |
StartUtc | Yes | Start date for export (ISO 8601) | |
States | No | Filter by reservation states | |
TimeZone | No | Time zone for date formatting |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"EndUtc": {
"description": "End date for export (ISO 8601)",
"type": "string"
},
"Format": {
"description": "Export format (CSV, JSON, etc.)",
"enum": [
"Csv",
"Json",
"Excel"
],
"type": "string"
},
"ReservationIds": {
"description": "Specific reservation IDs to export",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"StartUtc": {
"description": "Start date for export (ISO 8601)",
"type": "string"
},
"States": {
"description": "Filter by reservation states",
"items": {
"type": "string"
},
"type": "array"
},
"TimeZone": {
"description": "Time zone for date formatting",
"type": "string"
}
},
"required": [
"StartUtc",
"EndUtc",
"Format"
],
"type": "object"
}