Update Rizerve Property
rizerve_update_propertyUpdate property details by specifying only the fields to change. Modify price, availability, amenities, and more without affecting other settings.
Instructions
Update a property's details. Send only the fields you want to change — omitted fields are left unchanged.
Args:
slug (string): Property public slug
Any property fields to update (title, description, price_per_night, is_published, etc.)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Examples:
"Change the villa price to €120" → rizerve_update_property({ slug: "beachfront-villa", price_per_night: 12000 })
"Publish the mountain cabin" → rizerve_update_property({ slug: "mountain-cabin", is_published: true })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| slug | Yes | Property public slug (e.g. "beachfront-villa") | |
| bedrooms | No | ||
| latitude | No | ||
| location | No | ||
| amenities | No | ||
| bathrooms | No | ||
| extra_fee | No | ||
| longitude | No | ||
| max_guests | No | ||
| description | No | ||
| theme_color | No | ||
| is_published | No | ||
| minimum_stay | No | ||
| check_in_time | No | ||
| main_site_url | No | ||
| check_out_time | No | ||
| extra_fee_type | No | ||
| price_per_night | No | Price per night in property currency (face value, not cents) | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |