Create Interface_template
netbox_create_interface_templateCreate a new interface template in NetBox by specifying name and type, plus optional fields like label, enabled status, or device type. Receive a summary or full JSON response.
Instructions
Create a new interface_template 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). | |
| type | Yes | Interface type slug, e.g. '1000base-t', '10gbase-x-sfpp', '25gbase-x-sfp28', '100gbase-x-qsfp28', 'virtual', 'lag'. (required). | |
| label | No | ||
| bridge | No | ||
| enabled | No | ||
| poe_mode | No | ||
| poe_type | No | ||
| mgmt_only | No | ||
| description | No | ||
| device_type | No | Device type id (set this OR module_type). | |
| module_type | No | Module type id (set this OR device_type). | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |