Skip to main content
GET
/
service
/
{tenant_name}
/
pbm_rule
/
{rule_name}
Get Tenant Pbm Rule
curl --request GET \
  --url https://api.example.com/service/{tenant_name}/pbm_rule/{rule_name} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "count": 123,
  "unit": "unspecified",
  "labels": {},
  "priority": 1,
  "enable": true,
  "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
count
integer
required
unit
enum<string>
required
Available options:
unspecified,
kps,
pps
labels
Labels · object
required
priority
integer
default:1
enable
boolean
default:true
filters
RuleFilter · object[]
description
string | null