Create Tenant_group
netbox_create_tenant_groupAdd a new tenant group to your NetBox inventory. Define name, slug, parent, tags, and custom fields. Get a markdown summary or full JSON response.
Instructions
Create a new tenant_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 | Name (required). | |
| slug | Yes | URL slug (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| parent | No | Parent id (nestable). | |
| 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 |