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

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

[
    [
        [
            {
                "id": 16,
                "url": "https://netbox.c3voc.de/api/dcim/power-ports/16/?format=api",
                "display": "PSU1",
                "device": {
                    "id": 2,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/2/?format=api",
                    "display": "swt-colo-2",
                    "name": "swt-colo-2"
                },
                "name": "PSU1",
                "cable": 34,
                "_occupied": true
            }
        ],
        {
            "id": 34,
            "url": "https://netbox.c3voc.de/api/dcim/cables/34/?format=api",
            "type": "power",
            "status": "connected",
            "label": "",
            "color": "111111",
            "length": 1.0,
            "length_unit": "m",
            "description": ""
        },
        [
            {
                "id": 9,
                "url": "https://netbox.c3voc.de/api/dcim/power-outlets/9/?format=api",
                "display": "7",
                "device": {
                    "id": 10,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/10/?format=api",
                    "display": "Main",
                    "name": "Main"
                },
                "name": "7",
                "cable": 34,
                "_occupied": true
            }
        ]
    ]
]