Trace a complete cable path and return each segment as a three-tuple of (termination, cable, termination).

GET /api/dcim/power-outlets/15/trace/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS, TRACE
Content-Type: application/json
Vary: Accept

[
    [
        [
            {
                "id": 15,
                "url": "https://netbox.c3voc.de/api/dcim/power-outlets/15/?format=api",
                "display": "5",
                "device": {
                    "id": 11,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/11/?format=api",
                    "display": "Redundancy",
                    "name": "Redundancy"
                },
                "name": "5",
                "cable": 43,
                "_occupied": true
            }
        ],
        {
            "id": 43,
            "url": "https://netbox.c3voc.de/api/dcim/cables/43/?format=api",
            "type": "power",
            "status": "connected",
            "label": "",
            "color": "ffffff",
            "length": 2.0,
            "length_unit": "m",
            "description": ""
        },
        [
            {
                "id": 24,
                "url": "https://netbox.c3voc.de/api/dcim/power-ports/24/?format=api",
                "display": "IN",
                "device": {
                    "id": 17,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/17/?format=api",
                    "display": "Redundancy (Outlets)",
                    "name": "Redundancy (Outlets)"
                },
                "name": "IN",
                "cable": 43,
                "_occupied": true
            }
        ]
    ]
]