Skip to main content
GET
/
service
/
{tenant_name}
/
pbr_rule
Get All Tenant Pbr Rules
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/pbr_rule \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "name": "<string>",
      "tenant_name": "<string>",
      "vrf_name": "<string>",
      "gateway_vrf_name": "<string>",
      "labels": {},
      "priority": 1,
      "enable": true,
      "filters": [],
      "gateway_ip_address": "<string>",
      "gateway_interface": "<string>",
      "gateway_MAC": "<string>",
      "action": "ROUTE",
      "description": "<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

Query Parameters

limit
integer
default:0
offset
integer
default:0

Response

Successful Response

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