docs.zenspace.io
  1. Device Management
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
        POST
      • Create device sensors
        POST
      • Create or update admin unlock codes
        POST
      • Upload meeting space screenshot
        POST
    • Authentication
      • Create authorization token
    • Messaging
      • Send message to Android device
    • Booking
      • Send meeting space state by booking ID
      • Create or update booking
  1. Device Management

Upload meeting space screenshot

POST
/meetingspace/meeting_space_screenshot_upload
Device Management
Last modified:2025-05-29 13:03:16
x-usage:iot/admin
Upload screenshot from meeting room display or request screenshot from admin
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/meetingspace/meeting_space_screenshot_upload' \
--header 'Content-Type: application/json' \
--data-raw '{
    "device_id": "244194ef86577183",
    "image_base64": "data:image/jpeg;base64,/9j/4AAAoAoAoAoAoAoD2gPKAKA//Z"
}'

Request

Body Params application/json
device_id
string 
required
Example:
244194ef86577183
image_base64
string 
optional
Base64 encoded image (required when uploading from device)
Example:
data:image/jpeg;base64,/9j/4AAAoAoAoAoAoAoD2gPKAKA//Z
Examples

Responses

🟢200OK
Screenshot processed successfully
This response does not have a body.
Previous
Create or update admin unlock codes
Next
Create authorization token
Built with