netbox_get_object_by_id
Retrieve complete details for any NetBox object by specifying its type and ID, enabling quick access to infrastructure management data.
Instructions
Get detailed information about a specific NetBox object by its ID.
Args: object_type: String representing the NetBox object type (e.g. "devices", "ip-addresses") object_id: The numeric ID of the object
Returns: Complete object details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
object_id | Yes | ||
object_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"object_id": {
"title": "Object Id",
"type": "integer"
},
"object_type": {
"title": "Object Type",
"type": "string"
}
},
"required": [
"object_type",
"object_id"
],
"type": "object"
}