docs.zenspace.io
  1. Schemas
docs.zenspace.io
  • 🧭 Introduction
  • 🧱 System Components
  • 🧰 Tech Stack
  • 🏗️ System Architecture
  • 🌐 Deployment Architecture
  • 🗄️ Database Design Documentation
  • API Endpoints
    • RaspberryPi
      • Heartbeat API
      • Retrieve all active sensors and device permissions
      • Control a device (e.g., turn on/off, adjust intensity)
      • Enable or disable a device
      • Register a meeting space ID and retrieve network details
    • Meeting Space
      • Schedule meeting space state
      • Get meeting spaces by customer
      • Get meeting space state by ID
      • Get meeting space state by device ID
      • Disable meeting space state
      • Send meeting space state by meeting space ID
      • Store meeting space availability
      • Create Google Calendar
    • Device Management
      • Create device
      • Create device sensors
      • Create or update admin unlock codes
      • Upload meeting space screenshot
    • Authentication
      • Create authorization token
    • Messaging
      • Send message to Android device
    • Booking
      • Send meeting space state by booking ID
      • Create or update booking
    • Iftt
      • Create a new event with conditions and actions
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
    • Schemas
      • DevicePermission
      • MeetingSpace
      • MeetingRoomData
      • MeetingSpaceState
      • DeviceSensor
      • BookingRequest
      • StateResponse
  1. Schemas

BookingRequest

{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "start_datetime": "2025-02-24T15:00:00-08:00",
    "end_datetime": "2025-02-24T15:30:00-08:00",
    "meeting_space_id": "0a8c781d-bd46-4615-8f6f-bd329a55eb4d",
    "attendees": [
        {
            "name": "string",
            "email": "user@example.com",
            "phone": "string"
        }
    ],
    "created_by_name": "string",
    "created_by_email": "user@example.com",
    "created_by_phone_no": "string",
    "is_active": true,
    "unlock_key": "string",
    "external_id": "string"
}
Built with