PUT - System Devices

Update a single device in the Broadworks system.

Parameters

  • device_name (str): Device name of the target device.

  • updates (dict): Updates to apply to the target device.

Returns

  • Dict: Python dictionary of the new state after updates have been applied.

How To Use:

updates = {
	"deviceType":"Polycom_VVX400",
	"protocol":"SIP 2.0",
	"transportProtocol":"UDP",
	"useCustomUserNamePassword":False,
	"deviceLevel":"System"
}


my_api.devices.put_system_devices(
    "device_name",
    updates=updates
)

Last updated

Was this helpful?