pynetbox
pynetbox copied to clipboard
Render Elevation as SVG
I've managed to get the rack elevation as a list of devices
rack = netbox.dcim.racks.get(21)
device = rack.elevation.list()
and I know the REST API has the option to set render=json/svg, and I was wondering if there is an already existing way to do this in pynetbox or if it could be added in the future?
Thanks!