I did something like this and it worked. `const ...
# 🌎general
b
I did something like this and it worked.
Copy code
const name = workflow.firstName
const email = workflow.email
const interest = workflow.interest
//const conversationHistory = 

const payload = {
  name,
  email,
  interest
}

const webhookUrl = "https://hooks.zapier.com/hooks/catch/replacewithyourwebhook/"
await axios.post(webhookUrl, payload)