v1
latestOpenAPI 3.0.02026-07-243339471.1 MBAccess Points
Get a list of Access Point ports
This API endpoint retrieves a list of ports associated to an access point. Each port in the returned list includes comprehensive details like MAC address, port index and status.
get/network-monitoring/v1/aps/{serial-number}/ports
Path parameters
serial-numberstring const required
The device serial number.
Example:AP00000001
Serial number of an access point device.
Response
List of Ports of an access point, along with their details.
Example response
{
"items": [
{
"macAddress": "80:76:8e:a5:10:00",
"name": "eth0",
"status": "UP",
"vlanMode": "-",
"allowedVlan": "all",
"nativeVlan": "1",
"accessVlan": "-",
"speed": "5000",
"duplex": "Full",
"connector": "RJ45",
"isUplink": false,
"portIndex": 0,
"id": "AP00000001/ports/0",
"type": "network-monitoring/access-point-monitoring"
}
],
"count": 1,
"total": 1
}