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
}
'