Skip to main content
PUT
/
service
/
{tenant_name}
/
bgp
/
neighbor
/
{remote_router_ip}
/
reset
Get advertised routes
curl --request PUT \
  --url https://api.example.com/service/{tenant_name}/bgp/neighbor/{remote_router_ip}/reset \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reset_type": "hard_reset"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

remote_router_ip
string
required

Body

application/json
reset_type
enum<string>
required
Available options:
hard_reset,
reset,
soft_reset,
soft_in,
soft_out

Response

Successful Response