getAllSpaceCategories
Retrieve all space categories for a service using filters like specific category IDs or update date ranges, ensuring precise data access in Mews MCP server operations.
Instructions
Returns all space categories of a service
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ServiceIds | Yes | Filter by service IDs | |
SpaceCategoryIds | No | Filter by specific category IDs | |
UpdatedUtc | No | Date range filter for category updates |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"ServiceIds": {
"description": "Filter by service IDs",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"SpaceCategoryIds": {
"description": "Filter by specific category IDs",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"UpdatedUtc": {
"description": "Date range filter for category updates",
"properties": {
"EndUtc": {
"description": "End of update date range (ISO 8601)",
"type": "string"
},
"StartUtc": {
"description": "Start of update date range (ISO 8601)",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"ServiceIds"
],
"type": "object"
}