NOTE: This release completely removes support for embedded graphs.
The REST API now supports the bulk deletion of objects of the same type in a single request. Send a DELETE HTTP request to the list to the model's list endpoint (e.g. /api/dcim/sites/) with a list of JSON objects specifying the numeric ID of each object to be deleted. For example, to delete sites with IDs 10, 11, and 12, issue the following request:
curl -s -X DELETE \
-H "Authorization: Token $TOKEN" \
-H "Content-Type: application/json" \
http://netbox/api/dcim/sites/ \
--data '[{"id": 10}, {"id": 11}, {"id": 12}]'
commit argument is now required argument in a custom script's run() methodDELETE operations on list endpointscustom_fields_depth field has been added to reflect MPTT positioningcustom_fieldscustom_fieldscustom_fieldstemplate_language field has been removedport to ports; now holds a list of one or more port numbersdevice field; replaced with assigned_object generic foreign key. This may represent either a device or a virtual machine. Assign an object by setting assigned_object_type and assigned_object_id.