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

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

[
    [
        [
            {
                "id": 3,
                "url": "https://netbox.c3voc.de/api/dcim/power-outlets/3/?format=api",
                "display": "1",
                "device": {
                    "id": 10,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/10/?format=api",
                    "display": "Main",
                    "name": "Main"
                },
                "name": "1",
                "cable": 29,
                "_occupied": true
            }
        ],
        {
            "id": 29,
            "url": "https://netbox.c3voc.de/api/dcim/cables/29/?format=api",
            "type": "power",
            "status": "connected",
            "label": "",
            "color": "111111",
            "length": 1.0,
            "length_unit": "m",
            "description": ""
        },
        [
            {
                "id": 11,
                "url": "https://netbox.c3voc.de/api/dcim/power-ports/11/?format=api",
                "display": "PSU0",
                "device": {
                    "id": 6,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/6/?format=api",
                    "display": "storage",
                    "name": "storage"
                },
                "name": "PSU0",
                "cable": 29,
                "_occupied": true
            }
        ]
    ]
]