Create Rizerve Property
rizerve_create_propertyAdd new rental properties to the Rizerve platform by providing a title and nightly rate, with optional details like location, amenities, and capacity.
Instructions
Create a new property listing.
Required fields: title, price_per_night (in cents). Optional: description, location, public_slug (auto-generated if omitted), bedrooms, bathrooms, max_guests, amenities, minimum_stay, check_in_time, check_out_time, extra_fee, extra_fee_type, theme_color, latitude, longitude, main_site_url.
Args:
title (string): Property title (required)
price_per_night (number): Price in cents, e.g. 15000 = €150.00 (required)
All other fields optional (see schema)
Returns: Created property object with generated id and public_slug.
Examples:
"Add a new villa in Crete" → rizerve_create_property({ title: "Cretan Sunset Villa", price_per_night: 12000, location: "Crete, Greece", bedrooms: 3, max_guests: 6 })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Property name | |
| bedrooms | No | Number of bedrooms | |
| currency | No | ISO 4217 currency code | EUR |
| latitude | No | Latitude coordinate | |
| location | No | Location (e.g. "Crete, Greece") | |
| amenities | No | List of amenity tags | |
| bathrooms | No | Number of bathrooms | |
| extra_fee | No | Extra fee in euros | |
| longitude | No | Longitude coordinate | |
| max_guests | No | Maximum guest capacity | |
| description | No | Full property description | |
| theme_color | No | Brand color (hex) | |
| minimum_stay | No | Minimum nights per booking | |
| check_in_time | No | Check-in time (HH:MM) | |
| main_site_url | No | External website URL | |
| check_out_time | No | Check-out time (HH:MM) | |
| extra_fee_type | No | Fee type: fixed or percentage | |
| price_per_night | Yes | Price per night in euros (e.g. 150 = €150.00) | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |