Skip to main content

Creating A Lead Dialer Via Webhook

How to create Lead Dialer sequences by way of webhook.

S
Written by Sebastian Donnelly
Updated over 6 years ago

Lead Dialer sequences can be assigned to Jensen forms (both built by the Jensen platform or powered by the Jensen JS snippet) or created via webhook.  

One easy example to see how a Lead Dialer sequence can be initiated via webhook would be wiring up a Zapier webhook zap to Jensen.  

To create a Lead Dialer via webhook, click on the Lead Dialer name on your Lead Dialers tab and you will see a Webhook URL: 

In this example the webhook url would be: 

To create a Lead Dialer sequence we simply need to send a POST request to this URL with the following attributes: 

name
number ** Required

A sample CURL request:

curl -d '{"name":"John Doe", "number":"+12541212"}' -H "Content-Type: application/json" -X POST https://webhooks.jensen.ai/lead_dialers/7f6mSXxdGSLUPL5mhcavKLRm


If you include a name attribute in your request the agent will be alerted to the lead's name before being connected.

Did this answer your question?