docs.zenspace.io
  1. Meeting Space
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
        POST
      • Get meeting spaces by customer
        GET
      • Get meeting space state by ID
        GET
      • Get meeting space state by device ID
        GET
      • Disable meeting space state
        GET
      • Send meeting space state by meeting space ID
        GET
      • Store meeting space availability
        POST
      • Create Google Calendar
        POST
    • 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
  1. Meeting Space

Schedule meeting space state

POST
/meetingspace/schedule_meeting_space_state
Meeting Space
Last modified:2025-05-29 13:03:16
x-internal-usage:true
Schedule the state of the meeting space for the current date in the specified timezone of the meeting space
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/meetingspace/schedule_meeting_space_state' \
--header 'Content-Type: application/json' \
--data-raw '{
    "meeting_space_id": "5017bf48-9a38-43bd-87d5-57d1ffecfb5c",
    "availablity_modified_for_today": true
}'
Response Response Example
{
    "message": "Scheduled events successfully."
}

Request

Body Params application/json
meeting_space_id
string <uuid>
required
Example:
5017bf48-9a38-43bd-87d5-57d1ffecfb5c
availablity_modified_for_today
boolean 
required
Example:
true
Examples

Responses

🟢200OK
application/json
Scheduled events successfully
Body
message
string 
optional
Example:
Scheduled events successfully.
Previous
Register a meeting space ID and retrieve network details
Next
Get meeting spaces by customer
Built with