curl --request POST \
--url https://api.example.com/service/{tenant_name}/bgp/neighbor \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"remote_asn": 123,
"remote_router_ip": "<string>",
"update_source": "<string>",
"password": "<string>",
"passive": false,
"pfx_list_in": "<string>",
"pfx_list_out": "<string>",
"max_pfx_in": 1000,
"max_pfx_out": 1000,
"keepalive": 123,
"hold": 123,
"open_delay": 0,
"shutdown": false,
"description": "<string>",
"bfd_config": {
"transmit_interval": 0,
"receive_interval": 0,
"detect_multiplier": 0,
"passive_mode": false
},
"enable": true
}
'