Block or Unblock a Date
rizerve_block_dateBlock or unblock a property date to mark it as unavailable for maintenance, owner stays, or manual blocks.
Instructions
Block or unblock a specific date for a property.
Use to mark dates as unavailable for maintenance, owner stays, or manual blocks.
Args:
slug (string): Property public slug
date (string): Date to block/unblock YYYY-MM-DD (required)
available (boolean): false to block, true to unblock (required)
reason (string): Optional reason (e.g. "maintenance", "owner_stay")
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Examples:
"Block July 3rd for maintenance" → rizerve_block_date({ slug: "beachfront-villa", date: "2026-07-03", available: false, reason: "maintenance" })
"Unblock July 3rd" → rizerve_block_date({ slug: "beachfront-villa", date: "2026-07-03", available: true })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date to block or unblock (YYYY-MM-DD) | |
| slug | Yes | Property public slug (e.g. "beachfront-villa") | |
| reason | No | Reason for blocking (e.g. "maintenance", "owner_stay") | |
| available | Yes | Set to false to block, true to unblock | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |