plain-cpu-21980
07/28/2023, 9:07 AMwonderful-kilobyte-12079
07/28/2023, 9:24 AMhelpful-vr-6699
07/28/2023, 9:52 AMjs
//leadData is the object
const leadData = {
name: workflow.name, // worflow.variable
email: workflow.email,
phone: workflow.phone
};
// Define the webhook URL
const webhookUrl = 'https://; < MAKE WEBHOOK
// Send data to the webhook
try {
await axios.post(webhookUrl, leadData);
} catch (error) {
console.error(error)
}
plain-cpu-21980
07/28/2023, 9:53 AMhelpful-vr-6699
07/28/2023, 9:54 AMplain-cpu-21980
07/28/2023, 9:57 AM