Skip to main content
GET
/
service
/
{tenant_name}
/
firewall_rule
Get All Tenant Fw Rules
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/firewall_rule \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "name": "<string>",
      "enable": true,
      "username": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "user_ip_address": "<string>",
      "priority": 1,
      "filters": [],
      "forwarding_policy": "ALLOW",
      "description": "<string>",
      "categories": [],
      "allowed_domains": [
        "<string>"
      ],
      "denied_domains": [
        "<string>"
      ],
      "policy_name": "<string>",
      "time_policies": [],
      "gate_vi_names": [],
      "gate_vi_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

Query Parameters

limit
integer
default:0
offset
integer
default:0

Response

Successful Response

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