Skip to main content
POST
/
service
/
{tenant_name}
/
bgp_route_map_rule
Create Tenant Bgp Route Map Rule
curl --request POST \
  --url https://api.example.com/service/{tenant_name}/bgp_route_map_rule \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "pfx_list_name": "<string>",
  "action": "permit",
  "priority": 123,
  "name": "<string>",
  "filters": [
    {
      "ip": "<string>",
      "le": 123,
      "ge": 123,
      "seq": 123,
      "match": true
    }
  ],
  "description": "<string>"
}
'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "status": "received",
  "extra_details": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

Body

application/json
pfx_list_name
string
required
action
enum<string>
required
Available options:
permit,
deny
priority
integer
required
name
string | null
filters
PfxListItem · object[] | null
description
string | null

Response

Successful Response

id
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
status
enum<string>
required
Available options:
received,
in_progress,
success,
failed,
cancelled
extra_details
Extra Details · object