Get MAC Address Status (v2.0)
List all the MAC address status for a tenant.
Path Parameters
tenant_id string required
The tenant ID.
element_id string required
The element ID.
Responses
- 200
- 404
Successful Operation
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
element_id string
The element ID.
id string
The MAC address state ID.
mac_address_table MacAddressEntry[]
Details of the MAC address entries.
mac_address string
The MAC address.
port string
The switch port.
type string
Dynamic or Static.
vlan int32
The number of conncected VLANs.
{
"element_id": "string",
"id": "string",
"mac_address_table": [
{
"mac_address": "string",
"port": "string",
"type": "string",
"vlan": 0
}
]
}
Not Found
application/json
Schema
Example (from schema)
Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
message string
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "MAC_ADDRESS_STATUS_NOT_FOUND"
}
]
}
}
Loading...