action netbox_circuits_circuit_terminations_paths { label: "circuits_circuit-terminations_paths" description: "Return all CablePaths which traverse a given pass-through port." provider: netbox method: GET path: "/circuits/circuit-terminations/{id}/paths/" encoding: json output: { type: "object" required: ["circuit", "term_side"] properties: { _occupied: { type: "boolean" } cable: { type: "object" properties: { display: { type: "string" } id: { type: "integer" } label: { type: "string" } url: { type: "string" format: "uri" } } } cable_end: { type: "string" } circuit: { type: "object" required: ["cid"] properties: { cid: { type: "string" } display: { type: "string" } id: { type: "integer" } url: { type: "string" format: "uri" } } } 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" } link_peers: { type: "array" description: "\nReturn the appropriate serializer for the link termination model.\n" items: { type: "string" } } link_peers_type: { type: "string" } mark_connected: { type: "boolean" description: "Treat as if a cable is connected" } port_speed: { type: "integer" } pp_info: { type: "string" } provider_network: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } site: { 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" } } } 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" } } } } term_side: { type: "string" enum: ["A", "Z"] } upstream_speed: { type: "integer" description: "Upstream speed, if different from port speed" } url: { type: "string" format: "uri" } xconnect_id: { type: "string" } } } }