I have a lambda function that can received JSON in many different forms. The idea is to receive that through API Gateway. When i test the function given any form of JSON, it works fine. However, when i try to test it through API Gateway, it fails because the event is empty.
I tried to add an empty model mapping:
{}
But i still get the same result. How can I make the API pass any type of JSON in the body to the function?
Thanks!
EDIT
I want to use Lambda Proxy integration and i have testing with postman and the API gateway test feature in the AWS console. I'm just doing a POST with the required JSON in the body and the content type headers.