Hello Team,
I built an APIGEE API proxy endpoint, which works perfectly fine if the request payload does not contain “union” or “select” keyword in it. As soon as I add the “union” or “select” keyword in my request body payload, it starts failing with 403 forbidden error.
If I directly use my internal API which is being called within the APIGEE endpoint, it works fine with “union” or “select” keywords.
I tried to debug the proxy in debug mode but the 403 request is not showing in the list. I also tried to see the log explorer to get more information on it but no luck.
Here is my request payload look like:-
Valid request without “select” or “union” keywords:-
{“data”:[{“messageId”:“1111111”,“assetStatus”:{“assetName”:“AAAAA”,“assetType”:“Container”},“positionStatus”:{“city”:“CHEYENNE”,“state”:“WY”,“street”:“UNNAME ROAD”,“zipCode”:null,“country”:“US”,“address”:" ROAD, CHEYENNE, WY 82009, USA"}}]}
Valid request without “union” keyword which is failing with 403 error:-
{“data”:[{“messageId”:“1111111”,“assetStatus”:{“assetName”:“AAAAA”,“assetType”:“Container”},“positionStatus”:{“city”:“CHEYENNE”,“state”:“WY”,“street”:“union UNNAME ROAD”,“zipCode”:null,“country”:“US”,“address”:" ROAD, CHEYENNE, WY 82009, USA"}}]}
Awaiting for quick response.
Thanks