Blueshift supports the ability to capture leads from 3rd party forms using Webhooks.
Blueshift has built-in support for OptinMonster, Gleam, and can be extended to other lead capture systems with Webhook calls.
Tracked events
You can use lead capture forms to capture signups on your website, exit intent or lead ads from 3rd party sources such as Facebook. Blueshift can ingest a Webhook call with custom JSON payload and capture attributes such as email address, other relevant CRM attributes and update the customer profile.
Prerequisites
You will need a custom webhook in Blueshift and a webhook ID. Contact support@blueshift.com for this.
OptinMonster configuration
site: 'sandbox.testing.com'
webhook: http://api.getblueshift.com/api/v1/event/source/<api_key>/<webhook_id>
{
"lead": {
"email": "hello@optinmonster.com",
"firstName": "Archie",
"lastName": "Monster",
"phone": "888-888-8888",
"ipAddress": "1.2.3.4",
"referrer": "https://optinmonster.com"
},
"campaign": {
"id": "nppjcagohkl4bx3w1zln",
"title": "Demo (Popup)",
}
}
{
"event": "lead_generated",
"email": "hello@optinmonster.com",
"firstname": "Archie",
"lastName": "Monster",
"phone_number": "888-888-8888",
"ip": "1.2.3.4"
"campaign_id": "nppjcagohkl4bx3w1zln"
"title": "Demo (Popup)",
"referrer": "https://optinmonster.com"
}
Blueshift can support other Lead form integrations.
Comments
0 comments