Hi everyone,
I have created an integration between monday and aws api gateway. For authorization I am using lambda authorizer. My problem is when i hit the trigger I always get “Your automation has failed du to forbidden access” and no further details about the request result.
I want to see what exactly is the message because my api gateway seem to work properly with the lambda authorizer
this would be your lambda authorizer typically returning a 403 if using HTTP APIs (REST APIs I’d have to look)
{
isAuthorized: false
}
Otherwise your main lambda function is returning a 403.
Are you seeing events in cloudwatch for the authorizer function? Is the actual function being called after the authorizer?
1 Like