I have an AWS Lambda function that is exposed as a REST API.
When it is invoked it via the Test button on aws lambda console, it works.
When it is invoked v
Perhaps you are sending request to a wrong endpoint.
I was getting 403 error response by sending a POST request to https://example.com/locate
However, once I added stage http://example.com/dev/locate and deployed changes to this API, it worked ok, returning 200 response.
Hope that helps.