Patch_panels
Parameters
Index of the first item to return. Clamped to the collection length, so an offset past the end is an empty page rather than an error.
0 <= valueMaximum items to return. CLAMPED to 1000, not obeyed and not refused: a late-campaign save has thousands of hosts and serializing all of them would occupy the single tokio thread to produce a body nobody wants.
1 <= value <= 1000Code example
curl -X GET "https://example.com/api/v1/network/patch-panels"Response example
{ "items": [ { "id": 0, "rack_id": 0, "start_u": 0, "u_size": 0, "sku_name": "string", "port_count": 0, "used_ports": 0, "ports": [ { "index": 0, "label": "string", "link": "Down", "active": true, "cable_ids": [ 0 ], "peer": null, "port_id": 0, "state": "string", "media": "string", "gbps_tx": 0.1, "gbps_rx": 0.1, "link_capacity_gbps": 0, "error_count": 0, "bytes_egress_total": 0, "bytes_ingress_total": 0, "link_flaps": 0, "cable_able": true, "connector": "string", "color": "string", "breakout_used_gbps": 0, "breakout_capacity_gbps": 0, "breakout_leg_count": 0 } ], "inv_status": "string", "age_hours": 0, "power_on_hours": 0, "condition_pct": 0, "resale_dollars": 0.1 } ], "total": 0, "offset": 0, "count": 0}Response body
200One page of resultsWrapper for a paginated collection.
Every collection endpoint returns this. Unbounded collection responses are not an option: a late-campaign save has thousands of hosts, and serializing all of them would occupy the single tokio thread to produce a body nobody wants.