Get Revenue Report
rizerve_get_revenue_reportRetrieve revenue reports across all properties with breakdowns by day, week, month, or property. Choose time periods from 7 days to 365 days and output as markdown or JSON.
Instructions
Get revenue report across all properties with breakdown by period or property.
Args:
period (string): Time period - "7d", "30d", "90d", "365d" (default: "30d")
group_by (string): "day", "week", "month", or "property" (default: "month")
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Total revenue with breakdown.
Examples:
"How much did we make this month?" → rizerve_get_revenue_report({ period: "30d" })
"Revenue by property this year" → rizerve_get_revenue_report({ period: "365d", group_by: "property" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | Time period: "7d", "30d", "90d", "365d", or date range "YYYY-MM-DD/YYYY-MM-DD" | 30d |
| group_by | No | Group results by: day, week, month, or property | month |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |