Retrieve A single NetBox object by its ID.

Parameters

ParameterDescription
Object IDThe ID of your NetBox object. Can be obtained via the ‘List Objects’ action.

Example Output

{
	"id": 2954,
	"url": "http://netbox/api/ipam/ip-addresses/2954/",
	"family": {
		"value": 4,
		"label": "IPv4"
	},
	"address": "192.168.0.42/26",
	"vrf": null,
	"tenant": null,
	"status": {
		"value": "active",
		"label": "Active"
	},
	"role": null,
	"assigned_object_type": "dcim.interface",
	"assigned_object_id": 114771,
	"assigned_object": {
		"id": 114771,
		"url": "http://netbox/api/dcim/interfaces/114771/",
		"device": {
			"id": 2230,
			"url": "http://netbox/api/dcim/devices/2230/",
			"name": "router1",
			"display_name": "router1"
		},
		"name": "et-0/1/2",
		"cable": null,
		"connection_status": null
	},
	"nat_inside": null,
	"nat_outside": null,
	"dns_name": "",
	"description": "Example IP address",
	"tags": [],
	"custom_fields": {},
	"created": "2020-08-04",
	"last_updated": "2020-08-04T14:12:39.666885Z"
}

Workflow Library Example

Get Object with Netbox and Send Results Via Email

Preview this Workflow on desktop