PATCH¶
Partially updating list of Vlans in database¶
URL:
/api/v3/vlan/
Request body:
{
"vlans": [{
"id": [integer],
"active": [boolean]
},..]
}
Request Example:
{
"vlans": [{
"id": 1,
"active": false
}]
}
In Vlan PATCH request, you only need to specify the fields you want to change. For now, only active field can be changed.
- active - If not specified, Vlan will be the same as before. If specified, it will be updated with the new value.