{"id":5983,"date":"2023-08-28T15:21:15","date_gmt":"2023-08-28T15:21:15","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=5983"},"modified":"2024-02-14T11:39:38","modified_gmt":"2024-02-14T11:39:38","slug":"how-to-setup-real-time-email-verification-with-emailable","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/","title":{"rendered":"How to Setup Real-Time Email Verification with Emailable"},"content":{"rendered":"\n<p class=\"has-luminous-vivid-amber-background-color has-background\"><strong>IMPORTANT:<\/strong> You can use this as an alternative for Debounce, as Debounce is currently not accepting new users right now.<\/p>\n\n\n\n<p>Emailable is an alternate solution for real-time email verification. You may sign up for an account with with them by going to their website:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/emailable.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/emailable.com\/<\/a><\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 1: Create Q&amp;A Email field<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"970\" height=\"765\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png\" alt=\"\" class=\"wp-image-4764\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 2: Click the Add Scripts button<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"968\" height=\"765\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce2.png\" alt=\"\" class=\"wp-image-4765\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 3: Enter the name of the script, select Script as the type and set it as an Enter event<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can name the script anything you want.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"972\" height=\"730\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce3.png\" alt=\"\" class=\"wp-image-4766\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 4: Paste this code<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script>\n  let api_key = 'YOUR_API_KEY_HERE';\n  let isFormNode = SET_TO_true_or_false;\n\n  let emailField, submitBtn, buttonTxt, typingWaitTimer, previousValue, restoreTxt;\n\n  const keyPressHandler = () => {\n    clearTimeout(restoreTxt);\n    submitBtn.disabled = true;\n    submitBtn.innerHTML = '&lt;i class=\"fa fa-spin fa-spinner\">&lt;\/i> Verifying email...';\n    let value = emailField.value;\n    if (value != '' &amp;&amp; value != previousValue) {\n      clearTimeout(typingWaitTimer);\n      typingWaitTimer = setTimeout(() => {\n        !submitBtn.classList.contains('hidden') &amp;&amp; checkEmail();\n      }, 700);\n    }\n    previousValue = value;\n  };\n\n  const checkEmail = () => {\n    const requestOptions = {\n      method: 'GET',\n    };\n    \n    fetch(`https:\/\/api.emailable.com\/v1\/verify?email=${emailField.value}&amp;api_key=${api_key}`, requestOptions)\n      .then((response) => response.json())\n      .then((result) => {\n        DT.setField('emailable_status', result.state);\n        if (result.state === 'deliverable') {\n          submitBtn.disabled = false;\n          setTimeout(() => {\n            submitBtn.innerHTML = '&lt;i class=\"fa fa-check-circle\">&lt;\/i> Email Verified';\n          }, 5);\n          restoreTxt = setTimeout(() => {\n            submitBtn.innerHTML = '&lt;i class=\"fa fa-check-circle\">&lt;\/i> ' + buttonTxt;\n          }, 2000);\n        } else {\n          setTimeout(() => {\n            submitBtn.innerHTML = '&lt;i class=\"fa fa-exclamation-circle\">&lt;\/i> Invalid Email';\n          }, 5);\n          submitBtn.disabled = true;\n        }\n      })\n      .catch((error) => console.log('error', error));\n  };\n\n  setTimeout(() => {\n    let a = document.getElementsByClassName('next-btn').length - 1;\n    let b = document.getElementsByClassName('submit-btn').length - 1;\n    submitBtn = isFormNode ? document.getElementsByClassName('submit-btn')&#91;b] : document.getElementsByClassName('next-btn')&#91;a];\n    buttonTxt = submitBtn.innerHTML;\n    submitBtn.classList.add('hidden');\n    emailField = document.querySelector('input&#91;type=email]');\n    emailField.addEventListener('keyup', keyPressHandler);\n  }, 100);\n&lt;\/script><\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 5: Replace &#8220;YOUR_API_KEY_HERE&#8221; with your own actual API Key from Emailable<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"792\" height=\"329\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/11\/Capture.png\" alt=\"\" class=\"wp-image-5201\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 6: Replace &#8220;SET_TO_true_or_false&#8221; to &#8220;true&#8221; if you are using a form node or &#8220;false&#8221; if not.<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"710\" height=\"352\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/09\/true-3.png\" alt=\"\" class=\"wp-image-6458\" srcset=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/09\/true-3.png 710w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/09\/true-3-300x149.png 300w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/09\/true-3-60x30.png 60w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2023\/09\/true-3-150x74.png 150w\" sizes=\"(max-width: 710px) 100vw, 710px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">STEP 7: Save the node and Republish the Decision Tree<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This completes your setup of Bouncer email verification.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>IMPORTANT: You can use this as an alternative for Debounce, as Debounce is currently not accepting new users right now. Emailable is an alternate solution for real-time email verification. You may sign up for an account with with them by going to their website: STEP 1: Create Q&amp;A Email field STEP 2: Click the Add [&hellip;]<\/p>\n","protected":false},"author":18,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[242,12],"tags":[249,243,244,247,206,958,957,433,246,4,435,434],"class_list":["post-5983","post","type-post","status-publish","format-standard","hentry","category-data-validation","category-leadshook","tag-clean-data","tag-data-validation","tag-data-verification","tag-data-verify","tag-email","tag-email-validation","tag-emailable","tag-emails","tag-lead-generation","tag-leadshook","tag-validation","tag-verification"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Setup Real-Time Email Verification with Emailable - LeadsHook Knowledge Base<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Setup Real-Time Email Verification with Emailable - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"IMPORTANT: You can use this as an alternative for Debounce, as Debounce is currently not accepting new users right now. Emailable is an alternate solution for real-time email verification. You may sign up for an account with with them by going to their website: STEP 1: Create Q&amp;A Email field STEP 2: Click the Add [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/\" \/>\n<meta property=\"og:site_name\" content=\"LeadsHook Knowledge Base\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/leadshook\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-28T15:21:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-14T11:39:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png\" \/>\n<meta name=\"author\" content=\"Sheetal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@leadshook\" \/>\n<meta name=\"twitter:site\" content=\"@leadshook\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sheetal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/\"},\"author\":{\"name\":\"Sheetal\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/5139261061a0c92dc7aa58dcd033094c\"},\"headline\":\"How to Setup Real-Time Email Verification with Emailable\",\"datePublished\":\"2023-08-28T15:21:15+00:00\",\"dateModified\":\"2024-02-14T11:39:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/\"},\"wordCount\":150,\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"keywords\":[\"Clean Data\",\"Data Validation\",\"Data Verification\",\"Data Verify\",\"email\",\"email validation\",\"emailable\",\"emails\",\"Lead generation\",\"Leadshook\",\"validation\",\"verification\"],\"articleSection\":[\"Data Validation\",\"LeadsHook\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/\",\"name\":\"How to Setup Real-Time Email Verification with Emailable - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"datePublished\":\"2023-08-28T15:21:15+00:00\",\"dateModified\":\"2024-02-14T11:39:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/04\\\/Zerobounce1.png\",\"width\":970,\"height\":765},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-setup-real-time-email-verification-with-emailable\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Setup Real-Time Email Verification with Emailable\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\",\"name\":\"LeadsHook Knowledge Base\",\"description\":\"LeadsHook Training &amp; Technical Help\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\",\"name\":\"LeadsHook\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/leadshook-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/leadshook-logo.png\",\"width\":350,\"height\":83,\"caption\":\"LeadsHook\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/leadshook\\\/\",\"https:\\\/\\\/x.com\\\/leadshook\",\"https:\\\/\\\/www.linkedin.com\\\/showcase\\\/leadshook\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/5139261061a0c92dc7aa58dcd033094c\",\"name\":\"Sheetal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g\",\"caption\":\"Sheetal\"},\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/author\\\/sheetal\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Setup Real-Time Email Verification with Emailable - LeadsHook Knowledge Base","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/","og_locale":"en_US","og_type":"article","og_title":"How to Setup Real-Time Email Verification with Emailable - LeadsHook Knowledge Base","og_description":"IMPORTANT: You can use this as an alternative for Debounce, as Debounce is currently not accepting new users right now. Emailable is an alternate solution for real-time email verification. You may sign up for an account with with them by going to their website: STEP 1: Create Q&amp;A Email field STEP 2: Click the Add [&hellip;]","og_url":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2023-08-28T15:21:15+00:00","article_modified_time":"2024-02-14T11:39:38+00:00","og_image":[{"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","type":"","width":"","height":""}],"author":"Sheetal","twitter_card":"summary_large_image","twitter_creator":"@leadshook","twitter_site":"@leadshook","twitter_misc":{"Written by":"Sheetal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/"},"author":{"name":"Sheetal","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/5139261061a0c92dc7aa58dcd033094c"},"headline":"How to Setup Real-Time Email Verification with Emailable","datePublished":"2023-08-28T15:21:15+00:00","dateModified":"2024-02-14T11:39:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/"},"wordCount":150,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","keywords":["Clean Data","Data Validation","Data Verification","Data Verify","email","email validation","emailable","emails","Lead generation","Leadshook","validation","verification"],"articleSection":["Data Validation","LeadsHook"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/","url":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/","name":"How to Setup Real-Time Email Verification with Emailable - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","datePublished":"2023-08-28T15:21:15+00:00","dateModified":"2024-02-14T11:39:38+00:00","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/04\/Zerobounce1.png","width":970,"height":765},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/how-to-setup-real-time-email-verification-with-emailable\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"How to Setup Real-Time Email Verification with Emailable"}]},{"@type":"WebSite","@id":"https:\/\/www.leadshook.com\/help\/#website","url":"https:\/\/www.leadshook.com\/help\/","name":"LeadsHook Knowledge Base","description":"LeadsHook Training &amp; Technical Help","publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.leadshook.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.leadshook.com\/help\/#organization","name":"LeadsHook","url":"https:\/\/www.leadshook.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2018\/12\/leadshook-logo.png","width":350,"height":83,"caption":"LeadsHook"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/leadshook\/","https:\/\/x.com\/leadshook","https:\/\/www.linkedin.com\/showcase\/leadshook\/"]},{"@type":"Person","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/5139261061a0c92dc7aa58dcd033094c","name":"Sheetal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b0b84df264435d13d938835e002bc75bb86f34919c86bf0ab1f2cbfb7dc02e45?s=96&d=mm&r=g","caption":"Sheetal"},"url":"https:\/\/www.leadshook.com\/help\/author\/sheetal\/"}]}},"_links":{"self":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/5983","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/users\/18"}],"replies":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/comments?post=5983"}],"version-history":[{"count":6,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/5983\/revisions"}],"predecessor-version":[{"id":7002,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/5983\/revisions\/7002"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=5983"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=5983"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=5983"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}