Method: Seam::Clients::UnmanagedDevices#update

Defined in:
lib/seam/clients/unmanaged_devices.rb

#update(device_id: nil, is_managed: nil) ⇒ Object



29
30
31
32
33
34
35
36
37
38
# File 'lib/seam/clients/unmanaged_devices.rb', line 29

def update(device_id: nil, is_managed: nil)
  request_seam(
    :post,
    "/devices/unmanaged/update",
    body: {
      device_id: device_id,
      is_managed: is_managed
    }.compact
  )
end