action netbox_ipam_route_targets_read { label: "ipam_route-targets_read" description: "" provider: netbox method: GET path: "/ipam/route-targets/{id}/" encoding: json output: { type: "object" required: ["name"] properties: { comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" description: "Route target value (formatted in accordance with RFC 4360)" } tags: { type: "array" items: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } } tenant: { type: "object" required: ["name", "slug"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } url: { type: "string" format: "uri" } } } }