Get an Unmanaged Device
Get a specified unmanaged device
Returns a specified unmanaged device. An unmanaged device has a limited set of visible properties and a subset of supported events. You cannot control an unmanaged device. Any access codes on an unmanaged device are unmanaged. To control an unmanaged device with Seam, convert it to a managed device.
Request
Specify the desired unmanaged device by including the corresponding device_id
in the request body.
Request Body Parameters
Parameter
Type
Description
device_id
String Required
ID of the desired device.
Sample Request
pprint(seam.devices.unmanaged.get("882dd63f-db9b-4210-bac2-68372aa0aff7"))
Response
Returns an unmanaged device
that contains the set of applicable device properties. For details, see Devices.
This response also includes a Boolean ok
status indicator.
Sample Response
UnmanagedDevice(device_id='882dd63f-db9b-4210-bac2-68372aa0aff7',
device_type='august_lock',
properties={'image_alt_text': 'August Wifi Smart Lock 3rd Gen, '
'Silver, Front',
'image_url': 'https://connect.getseam.com/assets/images/devices/august_wifi-smart-lock-3rd-gen_silver_front.png',
'manufacturer': 'august',
'model': {'accessory_keypad_supported': True,
'display_name': 'Lock',
'manufacturer_display_name': 'August',
'offline_access_codes_supported': False,
'online_access_codes_supported': True},
'name': 'GARAGE',
'online': True},
connected_account_id='f72442d2-2c16-4e3f-9882-6bff21828b1b',
workspace_id='398d80b7-3f96-47c2-b85a-6f8ba21d07be',
created_at='2023-10-28T09:13:08.836Z',
errors=[],
warnings=[],
capabilities_supported=['access_code', 'lock'],
is_managed=False)
Last updated
Was this helpful?