When I make an API call with a malformed URL (as shown below) I notice that the request does not reach my API Proxy
curl -v “http:///v1/basepath/some%%”
Instead I am getting 400 Bad Request with the below HTML page
HTTP/1.1 400 Bad Request
...
<!DOCTYPE html>
<html>
<head>
<title>Error</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>An error occurred.</h1>
<p>Sorry, the page you are looking for is currently unavailable.<br/>
Please try again later.</p>
</body>
</html>
Can you please explain from where am I getting this error and why is the request not reaching my API Proxy ?