Hi @mirkin23
Thanks for reaching out to the Zoom Developer Forum, I am happy to help here!
Have you been able to troubleshoot this error?
Or are you still facing this issue?
Here is a link to our Docs about the Webhook Endpoint requirements:
I am trying to create a webhook in my zoom app, I have created API using AWS API Gateway which executes AWS Lambda function (Node.Js) to validate. I have added code from the documentation as below:
const { body } = event;
if(body.event === ‘endpoint.url_validation’) {
Thanks @reyaz.ahmed
I think it could be the way you are sending the response back , according to our docs, it should be a json object and status.
Can you try sending something like this?