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

GET /api/dcim/console-server-ports/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/console-server-ports/1/?format=api",
                "display": "ttyS0",
                "device": {
                    "id": 6,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/6/?format=api",
                    "display": "storage",
                    "name": "storage"
                },
                "name": "ttyS0",
                "cable": 42,
                "_occupied": true
            }
        ],
        {
            "id": 42,
            "url": "https://netbox.c3voc.de/api/dcim/cables/42/?format=api",
            "type": "",
            "status": "connected",
            "label": "",
            "color": "111111",
            "length": 2.0,
            "length_unit": "m",
            "description": ""
        },
        [
            {
                "id": 2,
                "url": "https://netbox.c3voc.de/api/dcim/console-ports/2/?format=api",
                "display": "CON",
                "device": {
                    "id": 1,
                    "url": "https://netbox.c3voc.de/api/dcim/devices/1/?format=api",
                    "display": "swt-colo-1",
                    "name": "swt-colo-1"
                },
                "name": "CON",
                "cable": 42,
                "_occupied": true
            }
        ]
    ]
]