Create Rack_reservation
netbox_create_rack_reservationCreate a new rack reservation in NetBox by providing rack ID, unit numbers, user ID, and description.
Instructions
Create a new rack_reservation 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 |
|---|---|---|---|
| rack | Yes | Rack id (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| user | Yes | User id who owns the reservation (required). | |
| units | Yes | Array of rack unit numbers to reserve (required), e.g. [1,2,3]. | |
| tenant | No | ||
| comments | No | ||
| description | Yes | Reservation description (required). | |
| 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 |