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

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

[
    [
        [
            {
                "id": 12,
                "url": "https://netbox.c3voc.de/api/dcim/power-outlets/12/?format=api",
                "display": "2",
                "device": {
                    "id": 11,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/11/?format=api",
                    "display": "Redundancy",
                    "name": "Redundancy"
                },
                "name": "2",
                "cable": 37,
                "_occupied": true
            }
        ],
        {
            "id": 37,
            "url": "https://netbox.c3voc.de/api/dcim/cables/37/?format=api",
            "type": "power",
            "status": "connected",
            "label": "",
            "color": "ffffff",
            "length": 1.0,
            "length_unit": "m",
            "description": ""
        },
        [
            {
                "id": 6,
                "url": "https://netbox.c3voc.de/api/dcim/power-ports/6/?format=api",
                "display": "PSU2",
                "device": {
                    "id": 13,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/13/?format=api",
                    "display": "akamai",
                    "name": "akamai"
                },
                "name": "PSU2",
                "cable": 37,
                "_occupied": true
            }
        ]
    ]
]