curl --request POST \
--url https://api.example.com/service/{tenant_name}/bgp_route_map_rule \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"pfx_list_name": "<string>",
"action": "permit",
"priority": 123,
"name": "<string>",
"filters": [
{
"ip": "<string>",
"le": 123,
"ge": 123,
"seq": 123,
"match": true
}
],
"description": "<string>"
}
'