cannot access user variables after a calendly webh...
# 🤝help
a
Hello, I am trying to execute a block of code to send a webhook to a URL AFTER a Calendly booking has been triggered/received. I am accessing variables stored in 'user' but the payload on the other end shows they are empty. To give some context, I am executing the same block of code before the trigger and the user variables show up just fine but it's only after the calendly trigger that the user variables become empty. I'll add some snapshots below. const webhookUrl2 = 'webhookurl' const data2 = { article: { firstName: user.fullName.first, lastName: user.fullName.last, email: user.email, bookingStatus: "booked", }, category: 'Business', } const header = { 'Content-Type': 'application/json', } await axios.post(webhookUrl2, data2) In the picture, I put a sample text and displayed the required user variables and they get displayed in the nodes before the trigger but are empty in the node after the trigger https://cdn.discordapp.com/attachments/1255600228086583329/1255600228766060585/image.png?ex=667db856&is=667c66d6&hm=45861b2a11991c7ae25fdae5eb083cb8ad2fa5f9c7cc64150e0ece1846683c7b&
@bumpy-butcher-41910
3 Views