Skip to main content
GET
/
tenant
/
{tenant_name}
/
virtual_interface
/
gate
Get all virtual interfaces per tenant type gate
curl --request GET \
  --url https://api.example.com/tenant/{tenant_name}/virtual_interface/gate \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "name": "<string>",
      "virtual_interface_bridge_domain_name": "<string>",
      "members": [],
      "description": "<string>",
      "is_snat_service": true,
      "is_nat_service": true,
      "is_ipsec_service": true,
      "is_lb_service": true,
      "system_name": "<string>",
      "operational_state": "up",
      "ip_addresses": [],
      "ip_address": "<string>",
      "is_dia": true,
      "asn": 123,
      "configuration": {
        "bfd": {
          "transmit_interval": 0,
          "receive_interval": 0,
          "detect_multiplier": 0,
          "passive_mode": false
        }
      }
    }
  ],
  "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
NBVirtualInterfaceGateResponse · object[]
required
count
integer
default:0
total_count
integer
default:0