list_reservations
List campground reservations filtered by arrival date and status. Retrieve confirmed, pending, or cancelled bookings for a specific date range.
Instructions
List reservations, optionally filtered by arrival date and status.
Use when: "what's arriving this weekend?", "show me pending reservations", "count cancellations last month".
Args: start_date: ISO date YYYY-MM-DD — only include reservations whose arrival is on or after this date. end_date: ISO date YYYY-MM-DD — only include reservations whose arrival is on or before this date. status: one of "confirmed", "pending", "cancelled", or other upstream-defined value. Omit for all statuses. limit: page size (server default applies if omitted). offset: zero-based offset for pagination.
Example: start_date="2026-07-01", end_date="2026-07-31", status="confirmed", limit=25.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No | ||
| status | No | ||
| end_date | No | ||
| start_date | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |