Integrate our data with any system you like! Webhook Notifications (per user, available to all users)
- JSON - (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.
- Your application will need to be capable of receiving JSON.
- If you are trying to export the data, go here for instructions.
Location in Application
- Login to your dashboard
- Go to 'Configuration -> Users'
- We recommend creating a New User for Webhooks only
- Edit User ->Other Integration
- Enable the Webhook by clicking the checkbox and inserting the postback URL
- Update User after you click 'Test Postback Now'
Fields Available
This integration is useful for connecting Visual Visitor with other systems. When your site receives new traffic, instead of sending an email alert, a Webhook will be sent in JSON with the following fields available to map into your system.
first_name |
last_name |
personal_email |
contact_address |
contact_address_2 |
contact_metro_city |
contact_state |
contact_zip |
contact_zip4 |
gender |
age_range |
married |
children |
income_range |
net_worth |
homeowner |
contact_job_title |
contact_professional_email |
contact_linkedin_url |
contact_facebook_url |
contact_twitter_url |
company_name |
company_linkedin_url |
company_domain |
company_employee_size_range |
company_employees |
company_revenue_range |
company_primary_industry |
company_address |
company_address_2 |
company_city |
company_region_code |
company_postal_code |
session_date |
remotesessionid |
referrer |
visitor_first_visit |
visitor_search_term |
visitor_search_engine |
campaign_name |
campaign_source |
campaign_medium |
campaign_term |
campaign_content |
pages_visited |
full_url |
host_name |
page |
querystring |
anchor |
page_time |
visit_date |
Everyone, including private label resellers, can integrate our data with their CRM, lead tracking or custom system.
Instant email notifications must be turned on to trigger the push.
Example JSON Output
- {
- "first_name":"Joe",
- "last_name":"Somebody",
- "personal_email":"joesomebody@gmail.com",
- "contact_address":"222 Personal Address Road",
- "contact_address_2":"Apt. 111",
- "contact_metro_city":"Jacksonville",
- "contact_state":"FL",
- "contact_zip":"32256",
- "contact_zip4":"1234",
- "gender":"Male",
- "age_range":"35 - 44",
- "married":"false",
- "children":"false",
- "income_range":"$90,000 to $119,999",
- "net_worth":"$150,000 to $249,999",
- "homeowner":"false",
- "contact_job_title":"Director of Sales",
- "contact_professional_email":"somebody@companydomain.com",
- "contact_linkedin_url":"linkedin.com/someperson",
- "contact_facebook_url":"facebook.com/somevisitortoyoursite",
- "contact_twitter_url":"twitter.com/somevisitortoyoursite",
- "company_name":"SomeCompanyName",
- "company_linkedin_url":"linkedin.com/company/somecompanyname",
- "company_domain":"companydomain.com",
- "company_employee_size_range":"51-200 employees",
- "company_employees":57,
- "company_revenue_range":"$50 - 100M",
- "company_primary_industry":"Marketing And Advertising",
- "company_address":"111 company address",
- "company_address_2":"Suite 105",
- "company_city":"Jacksonville",
- "company_region_code":"FL",
- "company_postal_code":"32256",
- "session_date":"2022-12-19T11:39:33.2038487-05:00",
- "remotesessionid":"alksdjfkly76y234sdaifkjhjajoiuasf234",
- "referrer":"www.google.com",
- "visitor_first_visit":true,
- "visitor_search_term":"myTerm",
- "visitor_search_engine":"www.google.com",
- "campaign_name":"monthly newsletter",
- "campaign_source":"monthly_newsletter_volume1",
- "campaign_medium":"email",
- "campaign_term":"free upgrade",
- "campaign_content":"campaign content",
- "pages_visited":[
- {
- "full_url":"https://www.somewebsite.com/testdir/testpage.html#anchorText?testqs=abcde",
- "host_name":"www.somewebsite.com",
- "page":"/testdir/testpage.html",
- "querystring":"testqs=abcde",
- "anchor":"anchorText",
- "page_time":63,
- "visit_date":"2022-12-19T11:24:33.2038487-05:00"
- },
- {
- "full_url":"https://www.somewebsite.com/testdir/testpage2.html",
- "host_name":"www.somewebsite.com",
- "page":"/testdir/testpage2.html",
- "querystring":"",
- "anchor":"",
- "page_time":22,
- "visit_date":"2022-12-19T11:24:55.2038487-05:00"
- },
- {
- "full_url":"https://www.somewebsite.com/testdir/testpage3.html",
- "host_name":"www.somewebsite.com",
- "page":"/testdir/testpage3.html",
- "querystring":"",
- "anchor":"",
- "page_time":22,
- "visit_date":"2022-12-19T11:25:17.2038487-05:00"
- }
- ]
- }
Note: Basic custom development knowledge required. Your system will need to be able to accept a Webhook. If your system does not accept a Webhook directly, you can use a third-party tool like Zapier.com or make.com to pass the webhook and feed into your system.