Get Zoom Room sensor data

GET {{baseUrl}}/rooms/:roomId/sensor_data?from=<string>&to=<string>&page_size=30&next_page_token=<string>&device_id=<string>&sensor_type=CO2

Use this API to get the sensor data from the specified Zoom Room.

Prerequisites:

  • Zoom Room licenses
  • Owner or Admin privileges on the Zoom Account.

Scopes: room:read:admin

Rate Limit Label : Medium

Request Params

| Key | Datatype | Required | Description | | from | string | | (Required) The start time and date in 'yyyy-MM-ddTHH:dd:ssZ' format. | | to | string | | (Required) The end time and date in 'yyyy-MM-ddTHH:dd:ssZ' format. | | page_size | number | | The number of records returned within a single API call. | | next_page_token | string | | Use the next page token to paginate through large result sets. A next page token is returned whenever the set of available results exceed the current page size. This token's expiration period is 15 minutes. | | device_id | string | | | | sensor_type | string | | |

HEADERS

| Key | Datatype | Required | Description | | Accept | string | | |

RESPONSES

status: OK

{&quot;from&quot;:&quot;\u003cstring\u003e&quot;,&quot;next_page_token&quot;:&quot;\u003cstring\u003e&quot;,&quot;page_size&quot;:&quot;\u003cinteger\u003e&quot;,&quot;sensor_data&quot;:[{&quot;date_time&quot;:&quot;\u003cstring\u003e&quot;,&quot;device_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;sensor_type&quot;:&quot;HUMIDITY&quot;,&quot;sensor_value&quot;:&quot;\u003cstring\u003e&quot;},{&quot;date_time&quot;:&quot;\u003cstring\u003e&quot;,&quot;device_id&quot;:&quot;\u003cstring\u003e&quot;,&quot;sensor_type&quot;:&quot;CO2&quot;,&quot;sensor_value&quot;:&quot;\u003cstring\u003e&quot;}],&quot;to&quot;:&quot;\u003cstring\u003e&quot;,&quot;total_records&quot;:&quot;\u003cinteger\u003e&quot;}