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

GET /api/dcim/interfaces/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/interfaces/1/?format=api",
                "display": "GE1/0/25",
                "device": {
                    "id": 1,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/1/?format=api",
                    "display": "swt-colo-1",
                    "name": "swt-colo-1"
                },
                "name": "GE1/0/25",
                "cable": 17,
                "_occupied": true
            }
        ],
        {
            "id": 17,
            "url": "https://netbox.c3voc.de/api/dcim/cables/17/?format=api",
            "type": "cat6",
            "status": "connected",
            "label": "fastly IPMI",
            "color": "ff5722",
            "length": 1.5,
            "length_unit": "m",
            "description": ""
        },
        [
            {
                "id": 127,
                "url": "https://netbox.c3voc.de/api/dcim/interfaces/127/?format=api",
                "display": "IPMI",
                "device": {
                    "id": 15,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/15/?format=api",
                    "display": "fastly",
                    "name": "fastly"
                },
                "name": "IPMI",
                "cable": 17,
                "_occupied": true
            }
        ]
    ]
]