Routing: Match Priority Explained
Understand why exact matches beat parameterized routes and why parameterized routes beat wildcard routes.
When to use this
What this does not do
Repo-grounded example
{
"servers": [
{ "alias": "upstream", "url": "https://api.example.com/base" }
],
"paths": [
{
"method": "GET",
"path": "/proxy/{.+}",
"integration": {
"type": "http_proxy",
"server": "upstream"
}
}
]
}Troubleshooting
Related docs
Last updated