Skip to main content
GET
/
service
/
{tenant_name}
/
mac
Get the MAC information for specific tenant
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/mac \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "mac": "<string>",
      "is_static": true,
      "is_aged": true,
      "age_minutes": 123,
      "is_dia": true,
      "virtual_interface_name": "<string>",
      "alias_name": "<string>",
      "tenant_name": "<string>",
      "port_name": "<string>"
    }
  ],
  "count": 0,
  "total_count": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

Response

Successful Response

items
NbMacTenantEntry · object[]
required
count
integer
default:0
total_count
integer
default:0