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
    • Iftt
      • Create a new event with conditions and actions
  1. Meeting Space

Store meeting space availability

POST
/meetingspace/admin-store-availability
Last modified:2025-05-29 13:03:16
x-usage:admin
Store availability of the meeting space for specific date

Request

Query Params

Body Params application/json

Examples

Responses

🟢200OK
Availability stored successfully
This response does not have a body.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/meetingspace/admin-store-availability?meeting_space_id=8af40248-19fa-4230-b22e-9fb40b7516ae' \
--header 'Content-Type: application/json' \
--data-raw '{
    "input_date": "2025-02-20T22:00:00",
    "slots": [
        {
            "id": "2025-02-20 22:00:00",
            "date": "2025-02-20",
            "time": "22:00:00"
        }
    ]
}'
Modified at 2025-05-29 13:03:16
Previous
Send meeting space state by meeting space ID
Next
Create Google Calendar
Built with