docs.zenspace.io
  1. Booking
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
        GET
      • Create or update booking
        POST
  1. Booking

Send meeting space state by booking ID

GET
/meetingspace/send_meeting_space_state_by_booking
Booking
Last modified:2025-05-29 13:03:16
x-usage:admin
Send current status message to meeting room display device by booking ID
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/meetingspace/send_meeting_space_state_by_booking?booking_id=1541f861-8119-4944-93b6-ca79262b48ad'
Response Response Example
{
    "message": "string",
    "response": {
        "ResponseMetadata": {},
        "StatusCode": 0,
        "ExecutedVersion": "string",
        "Payload": {}
    }
}

Request

Query Params
booking_id
string <uuid>
required
Example:
1541f861-8119-4944-93b6-ca79262b48ad

Responses

🟢200OK
application/json
State sent successfully
Body
message
string 
optional
response
object 
optional
ResponseMetadata
object 
optional
StatusCode
integer 
optional
ExecutedVersion
string 
optional
Payload
object 
optional
Previous
Send message to Android device
Next
Create or update booking
Built with