curl --request POST \
--url https://api.example.com/service/{tenant_name}/bgp_pfx_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"pfx_list": [
{
"ip": "0.0.0.0/0",
"match": true,
"seq": 5,
"le": 32
}
]
}
'