Logo
Zoom Public API Documentation

List Zoom Room devices

GET {{baseUrl}}/rooms/:roomId/devices

List information about the devices that are being used for a specific Zoom Room in an account.

Prerequisites:

  • Pro or a higher plan with Zoom Room license.

  • Account owner or admin permissions.

Scopes: room:read:admin

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "devices": [ { "app_version": "<string>", "device_system": "<string>", "device_type": "Companion Whiteboard", "id": "<string>", "room_name": "<string>", "status": "Offline", "device_mac_addresses": [ "<string>", "<string>" ], "device_hostname": "<string>", "device_manufacturer": "<string>", "device_model": "<string>", "device_firmware": "<string>", "ip_address": "<string>", "serial_number": "<string>" }, { "app_version": "<string>", "device_system": "<string>", "device_type": "Zoom Rooms Computer", "id": "<string>", "room_name": "<string>", "status": "Offline", "device_mac_addresses": [ "<string>", "<string>" ], "device_hostname": "<string>", "device_manufacturer": "<string>", "device_model": "<string>", "device_firmware": "<string>", "ip_address": "<string>", "serial_number": "<string>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/rooms/:roomId/devices' -H 'Accept: application/json'

ENDPOINTS