Skip to main content
GET
/
service
/
{tenant_name}
/
nat_rule
/
{rule_name}
Get specific NAT Rule
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/nat_rule/{rule_name} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "outside": "<string>",
  "rule_type": "SOURCE_ONE_TO_ONE",
  "inside_type": "segment",
  "inside": "<string>",
  "inside_port": 123,
  "protocol": 123,
  "outside_port": 123,
  "filters": [],
  "description": "<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
outside
string
required
rule_type
enum<string>
default:SOURCE_ONE_TO_ONE
Available options:
SOURCE_ONE_TO_ONE,
SOURCE_NAT,
DESTINATION_NAT,
NOP
inside_type
enum<string> | null
Available options:
segment,
ip
inside
string | null
inside_port
integer | null
protocol
integer | null
outside_port
integer | null
filters
RuleFilter · object[]
description
string | null