Hi everyone. I want to link AWS lambda to Monday.com webhook. i am beginner so any help would be useful thanks!
current codes (python3.7)
import json
def lambda_handler(event, context):
challenge : event[‘challenge’]
if 'challenge’in event:
return
{
‘statusCode’:200,
‘body’:json.dumps(challenge[event:‘challenge’])
}
else:
pass
while these codes passed in aws, i can’t seem to connect to Monday.com webhook. any help would be great;; thanks!