I came across this really good repo for my use case. https://github.com/Serber92/loadboard.
Here, he is using
carrierEmail = event.get('carrierEmail', '')
for the most part of his code. I am wondering how is he sending data to the lambda function.
I am aware of sending the information through 'api body' and 'api queryStringParameters' and to access this information we use something similar to this:
carrierEmail = event[queryStringParameters]['carrierEmail'].
The question here is how is he sending the data to lambda function?
queryStringParameters? This is for api gateway. So you want to know how to call it from api gateway?