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

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

[
    [
        [
            {
                "id": 1,
                "url": "https://netbox.c3voc.de/api/dcim/power-outlets/1/?format=api",
                "display": "Main",
                "device": {
                    "id": 9,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/9/?format=api",
                    "display": "Generic 8-Port Neutrik Patch Panel (9)",
                    "name": null
                },
                "name": "Main",
                "cable": 15,
                "_occupied": true
            }
        ],
        {
            "id": 15,
            "url": "https://netbox.c3voc.de/api/dcim/cables/15/?format=api",
            "type": "power",
            "status": "connected",
            "label": "",
            "color": "111111",
            "length": 2.0,
            "length_unit": "m",
            "description": ""
        },
        [
            {
                "id": 3,
                "url": "https://netbox.c3voc.de/api/dcim/power-ports/3/?format=api",
                "display": "IN",
                "device": {
                    "id": 10,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/10/?format=api",
                    "display": "Main",
                    "name": "Main"
                },
                "name": "IN",
                "cable": 15,
                "_occupied": true
            }
        ]
    ]
]