How to correctly parse the nested event structure from a Genesys Cloud webhook in a Node.js Lambda function? The payload arrives as a string, but JSON.parse fails on the body field because it’s already a stringified JSON object inside the event wrapper. I’m trying to access event.body.detail but getting undefined. Here’s the snippet. What am I missing?