getAllRates
Retrieve all enterprise pricing rates with optional filters by rate IDs, service IDs, rate group IDs, or date range updates via Mews MCP server.
Instructions
Returns all rates (pricing) of the enterprise
Input Schema
Name | Required | Description | Default |
---|---|---|---|
RateGroupIds | No | Filter by rate group IDs | |
RateIds | No | Filter by specific rate IDs | |
ServiceIds | No | Filter by service IDs | |
UpdatedUtc | No | Date range filter for rate updates |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"RateGroupIds": {
"description": "Filter by rate group IDs",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"RateIds": {
"description": "Filter by specific rate IDs",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"ServiceIds": {
"description": "Filter by service IDs",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
},
"UpdatedUtc": {
"description": "Date range filter for rate 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"
}
},
"type": "object"
}