Create Vlan_group
netbox_create_vlan_groupCreate a new VLAN group in NetBox with name, slug, optional scope, tag, and VLAN ID ranges.
Instructions
Create a new vlan_group in NetBox.
This adds a new row to NetBox. Ask before calling if the user wanted a dry-run.
Returns: Markdown summary of the newly created object (default) or JSON with the full NetBox response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | VLAN group name (required). | |
| slug | Yes | URL-safe slug (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| tenant | No | ||
| comments | No | ||
| scope_id | No | Numeric id of the scope object. | |
| scope_type | No | Scope object type; set together with scope_id. | |
| vid_ranges | No | Allowed VLAN id ranges as [start, end] pairs, e.g. [[1,999],[2000,2999]]. NetBox 4.x replaced min_vid/max_vid with this. Defaults to [[1,4094]]. | |
| description | No | ||
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |