Create Circuit
netbox_create_circuitAdd a circuit to NetBox by supplying a circuit ID, provider ID, and circuit type ID. Optionally configure status, tags, comments, and more.
Instructions
Create a new circuit 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 |
|---|---|---|---|
| cid | Yes | Circuit ID (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| type | Yes | Circuit type id (required). | |
| status | No | active | |
| tenant | No | ||
| comments | No | ||
| provider | Yes | Provider id (required). | |
| commit_rate | No | Committed rate (kbps). | |
| description | No | ||
| install_date | No | YYYY-MM-DD. | |
| 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 |
| provider_account | No | ||
| termination_date | No | YYYY-MM-DD. |