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

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

[
    [
        [
            {
                "id": 777,
                "url": "https://netbox.c3voc.de/api/dcim/interfaces/777/?format=api",
                "display": "ether1",
                "device": {
                    "id": 42,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/42/?format=api",
                    "display": "audio mixer 1",
                    "name": "audio mixer 1"
                },
                "name": "ether1",
                "cable": 44,
                "_occupied": true
            }
        ],
        {
            "id": 44,
            "url": "https://netbox.c3voc.de/api/dcim/cables/44/?format=api",
            "type": "",
            "status": "connected",
            "label": "",
            "color": "",
            "length": null,
            "length_unit": "",
            "description": ""
        },
        [
            {
                "id": 197,
                "url": "https://netbox.c3voc.de/api/dcim/interfaces/197/?format=api",
                "display": "ether19",
                "device": {
                    "id": 19,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/19/?format=api",
                    "display": "switch1-foh",
                    "name": "switch1-foh"
                },
                "name": "ether19",
                "cable": 44,
                "_occupied": true
            }
        ]
    ]
]