Download OpenAPI specification:Download
Serverless booking platform API documentation
Verifies the user's phone number using the OTP code sent via SMS
| phone required | string Phone number (without country code) |
| otpCode required | string 4-digit OTP code |
{- "phone": "555123456",
- "otpCode": "4444"
}Updates the user's phone number and sends a new OTP for verification
| phoneNumber required | string New phone number (without country code) |
| countryCode required | string Country code with + |
{- "phoneNumber": "555987654",
- "countryCode": "+995"
}Creates a temporary booking lock to prevent double bookings. Automatically deleted after 10 minutes.
| propertyId required | string Property ID |
| rentalType required | string Enum: "DAILY" "HOURLY" |
| checkIn required | string For DAILY - date only (2025-06-01), For HOURLY - full datetime (2025-06-01T14:00:00Z) |
| checkOut required | string For DAILY - date only (2025-06-03), For HOURLY - full datetime (2025-06-01T17:00:00Z) |
| guests required | number |
{- "rentalType": "DAILY",
- "checkIn": "2025-06-01",
- "checkOut": "2025-06-03",
- "guests": 2
}