bumpy-alligator-646
08/12/2023, 12:32 AMconst 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)