Skip to main content
GET
/
service
/
{tenant_name}
/
firewall_rule
/
{rule_name}
Get Tenant Fw Rule
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/firewall_rule/{rule_name} \
  --header 'Authorization: Bearer <token>'
{
  "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>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

Response

Successful Response

id
integer
required
name
string
required
enable
boolean
required
username
string | null
created_at
string | null
updated_at
string | null
user_ip_address
string | null
priority
integer
default:1
filters
RuleFilter · object[]
forwarding_policy
enum<string>
default:ALLOW
Available options:
ACCEPT,
DROP,
ALLOW,
DENY,
ALLOW_WITH_BLOCKED_SNI,
ALLOW_ONLY_SELECTED_SNIS
description
string | null
categories
string[] | null
allowed_domains
string[] | null
denied_domains
string[] | null
policy_name
string | null
time_policies
NBTimePolicy · object[] | null
gate_vi_names
string[]
gate_vi_name
string | null