Skip to main content
GET
/
tenant
/
{tenant_name}
/
virtual_interface
Get all virtual interfaces of type bridge domain per tenant
curl --request GET \
  --url https://api.example.com/tenant/{tenant_name}/virtual_interface \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "name": "<string>",
      "virtual_interface_type": "bridged",
      "ip_addresses": [],
      "mtu": 9220,
      "administrative_state": "up",
      "operational_state": "up",
      "description": "<string>",
      "members": [],
      "system_name": "<string>",
      "up_members": 123,
      "total_members": 123,
      "network_segments": [],
      "labels": {}
    }
  ],
  "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

Query Parameters

limit
integer
default:0
offset
integer
default:0

Response

Successful Response

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