Skip to main content
PUT
/
service
/
{tenant_name}
/
bgp
/
neighbor
/
{remote_router_ip}
Update neighbor
curl --request PUT \
  --url https://api.example.com/service/{tenant_name}/bgp/neighbor/{remote_router_ip} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "max_pfx_in": 500,
  "max_pfx_out": 500,
  "pfx_list_in": "<string>",
  "pfx_list_out": "<string>",
  "passive": true,
  "update_source": "<string>",
  "keepalive": 123,
  "hold": 123,
  "open_delay": 123,
  "shutdown": true,
  "description": "<string>",
  "bfd_config": {
    "transmit_interval": 0,
    "receive_interval": 0,
    "detect_multiplier": 0,
    "passive_mode": false
  },
  "enable": true
}
'
{
  "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

remote_router_ip
required

Body

application/json
max_pfx_in
integer | null
required
Required range: 0 <= x <= 1000
max_pfx_out
integer | null
required
Required range: 0 <= x <= 1000
pfx_list_in
string | null
pfx_list_out
string | null
passive
boolean | null
update_source
string | null
keepalive
integer | null
hold
integer | null
open_delay
integer | null
shutdown
boolean | null
description
string | null
bfd_config
BfdConfig · object
enable
boolean | 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