{"id":5002,"date":"2022-07-27T10:51:05","date_gmt":"2022-07-27T10:51:05","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=5002"},"modified":"2025-06-17T04:51:13","modified_gmt":"2025-06-17T04:51:13","slug":"how-to-generate-your-contact-state-claim-url","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/","title":{"rendered":"How to generate your Contact State Claim URL"},"content":{"rendered":"\n<p>Contact State is a regulatory technology platform specifically designed to build trust in two-sided markets like lead generation and affiliate marketing.<\/p>\n\n\n\n<p><a href=\"https:\/\/docs.contactstate.com\/#introduction\">https:\/\/docs.contactstate.com\/#introduction<\/a><\/p>\n\n\n\n<p>Contact State&nbsp;<strong><em>Certify<\/em><\/strong>&nbsp;allows&nbsp;<em>Data Sellers<\/em>&nbsp;to generate Certificates that serve as a record of provenance for consumer data, and then pass these certificates onto&nbsp;<em>Data Buyers<\/em>. This provides a trusted reference point for&nbsp;<em>Data Buyers<\/em>&nbsp;and&nbsp;<em>Data Sellers<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Credentials<\/h2>\n\n\n\n<p>In order to continue with the integration you will need credentials configured within Contact State.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Landing Page ID<\/strong>&nbsp;&#8211; Provided by Contact State. This identifies the landing page that your form is setup on.<\/li>\n\n\n\n<li><strong>Secret Key<\/strong>&nbsp;&#8211; Provided by Contact State. This is used to sign claim requests on behalf of a particular&nbsp;<em>Data Buyer<\/em>.<\/li>\n\n\n\n<li><strong>Form ID<\/strong>&nbsp;&#8211; The HTML element ID of the form you wish to attach to. <\/li>\n<\/ol>\n\n\n\n<p>If you need help getting your credentials please email&nbsp;<a href=\"mailto:support@contactstate.com\">support@contactstate.com<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Integration<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">1. Create these 2 custom fields under Admin &gt; Custom Fields (text type)<\/h4>\n\n\n\n<p class=\"has-text-align-left\">contact_state_cert_url<br>contact_state_reclaim_cert_url<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">2. In your decision tree canvas click Settings &gt; Scripts<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"467\" height=\"454\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Scripts.png\" alt=\"\" class=\"wp-image-5003\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">3. Under Decision Tree Scripts, paste the code below<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script&gt;\n  (function (w,d,s,o,f,js,fjs) {\n    w&#91;'ContactStateCertify']=o;w&#91;o] = w&#91;o] || function () { (w&#91;o].q = w&#91;o].q || &#91;]).push(arguments) };\n    js = d.createElement(s), fjs = d.getElementsByTagName(s)&#91;0];\n    js.id = o; js.src = f; js.async = 1; fjs.parentNode.insertBefore(js, fjs);\n  }(window, document, 'script', 'cscertify', 'https:\/\/js.contactstate.com\/certify-latest.js'));\n  cscertify('init', { landing_page_id: '<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">REPLACE_ME_WITH_YOUR_LANDING_PAGE_ID<\/mark>' });\n&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">4. Setup your form node and add this html code inside the content source<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div id=\"contact-state-protected-by-widget\" style=\"text-align: center;\"&gt;0&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">5. Add 2 node level scripts (Note of the event enter or exit)<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"575\" height=\"271\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Node-Level-Script.png\" alt=\"\" class=\"wp-image-5004\"\/><\/figure>\n\n\n\n<h5 class=\"wp-block-heading\">Contact State Widget Node Level Script<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script&gt;\n  setTimeout( ()=&gt; cscertify('widget'), 100)\n&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Contact State Node Level Script<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;form id='<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">REPLACE_ME_WITH_YOUR_FORM_ID<\/mark>' style=\"display: none\"&gt;\n    &lt;input name=\"first_name\" value=\"{first_name}\"\/&gt;\n    &lt;input name=\"last_name\" value=\"{last_name}\"\/&gt;\n    &lt;input name=\"email\" value=\"{email}\"\/&gt;\n    &lt;input name=\"mobile_number\" value=\"{mobile}\" \/&gt;\n&lt;\/form&gt;\n&lt;script&gt;\n  const saveCertToLh = (cert_url, reclaim_cert_url) =&gt; {\n    DT.setField('contact_state_cert_url', cert_url);\n    DT.setField('contact_state_reclaim_cert_url', reclaim_cert_url);\n  }\n  const getCertUrl = (claimUrl) =&gt; {\n    const requestOptions = {\n      method: 'POST',\n      headers: {\n        'Accept': 'application\/json',\n        'Content-Type': 'application\/json'\n      },\n      body: JSON.stringify({\"secret_key\": \"<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">REPLACE_ME_WITH_YOUR_SECRET_KEY<\/mark>\"})\n    };\n\n    fetch(claimUrl, requestOptions)\n      .then((response) =&gt; response.json())\n      .then((result) =&gt; saveCertToLh(result.cert_url, result.reclaim_cert_url))\n      .catch((error) =&gt; console.log('error', error));\n  }\n  \n  cscertify('send', { form_id: '<mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">REPLACE_ME_WITH_YOUR_FORM_ID<\/mark>' })\n  .then((claimUrl) =&gt; getCertUrl(claimUrl))\n  .catch((err) =&gt; console.error('Page script: There was an error!', err));\n&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">6. Create a transition node and set delay to 3 seconds<\/h4>\n\n\n\n<p>You can display the claim URL in an information node or result node to see the generated claim URL. You may use the sample content below.<\/p>\n\n\n\n<p>Contact State Cert URL: {contact_state_cert_url}<br>Contact State Reclaim URL: {contact_state_reclaim_cert_url}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Contact State is a regulatory technology platform specifically designed to build trust in two-sided markets like lead generation and affiliate marketing. https:\/\/docs.contactstate.com\/#introduction Contact State&nbsp;Certify&nbsp;allows&nbsp;Data Sellers&nbsp;to generate Certificates that serve as a record of provenance for consumer data, and then pass these certificates onto&nbsp;Data Buyers. This provides a trusted reference point for&nbsp;Data Buyers&nbsp;and&nbsp;Data Sellers. Credentials In [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,26],"tags":[877,876,874,873,875],"class_list":["post-5002","post","type-post","status-publish","format-standard","hentry","category-leadshook","category-security","tag-certificate-url","tag-claim-url","tag-contact","tag-contactstate","tag-state"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to generate your Contact State Claim URL - 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-generate-your-contact-state-claim-url\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to generate your Contact State Claim URL - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"Contact State is a regulatory technology platform specifically designed to build trust in two-sided markets like lead generation and affiliate marketing. https:\/\/docs.contactstate.com\/#introduction Contact State&nbsp;Certify&nbsp;allows&nbsp;Data Sellers&nbsp;to generate Certificates that serve as a record of provenance for consumer data, and then pass these certificates onto&nbsp;Data Buyers. This provides a trusted reference point for&nbsp;Data Buyers&nbsp;and&nbsp;Data Sellers. Credentials In [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/\" \/>\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=\"2022-07-27T10:51:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-17T04:51:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Scripts.png\" \/>\n\t<meta property=\"og:image:width\" content=\"467\" \/>\n\t<meta property=\"og:image:height\" content=\"454\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Von\" \/>\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=\"Von\" \/>\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-generate-your-contact-state-claim-url\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/\"},\"author\":{\"name\":\"Von\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/646557edf0c248393812c53a8ce7fe8b\"},\"headline\":\"How to generate your Contact State Claim URL\",\"datePublished\":\"2022-07-27T10:51:05+00:00\",\"dateModified\":\"2025-06-17T04:51:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/\"},\"wordCount\":293,\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Scripts.png\",\"keywords\":[\"certificate url\",\"claim url\",\"contact\",\"contactstate\",\"state\"],\"articleSection\":[\"LeadsHook\",\"Security\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/\",\"name\":\"How to generate your Contact State Claim URL - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Scripts.png\",\"datePublished\":\"2022-07-27T10:51:05+00:00\",\"dateModified\":\"2025-06-17T04:51:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Scripts.png\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/Scripts.png\",\"width\":467,\"height\":454},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-generate-your-contact-state-claim-url\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to generate your Contact State Claim URL\"}]},{\"@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\\\/646557edf0c248393812c53a8ce7fe8b\",\"name\":\"Von\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g\",\"caption\":\"Von\"},\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/author\\\/voncs-leadshook-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to generate your Contact State Claim URL - 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-generate-your-contact-state-claim-url\/","og_locale":"en_US","og_type":"article","og_title":"How to generate your Contact State Claim URL - LeadsHook Knowledge Base","og_description":"Contact State is a regulatory technology platform specifically designed to build trust in two-sided markets like lead generation and affiliate marketing. https:\/\/docs.contactstate.com\/#introduction Contact State&nbsp;Certify&nbsp;allows&nbsp;Data Sellers&nbsp;to generate Certificates that serve as a record of provenance for consumer data, and then pass these certificates onto&nbsp;Data Buyers. This provides a trusted reference point for&nbsp;Data Buyers&nbsp;and&nbsp;Data Sellers. Credentials In [&hellip;]","og_url":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2022-07-27T10:51:05+00:00","article_modified_time":"2025-06-17T04:51:13+00:00","og_image":[{"width":467,"height":454,"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Scripts.png","type":"image\/png"}],"author":"Von","twitter_card":"summary_large_image","twitter_creator":"@leadshook","twitter_site":"@leadshook","twitter_misc":{"Written by":"Von","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/"},"author":{"name":"Von","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/646557edf0c248393812c53a8ce7fe8b"},"headline":"How to generate your Contact State Claim URL","datePublished":"2022-07-27T10:51:05+00:00","dateModified":"2025-06-17T04:51:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/"},"wordCount":293,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Scripts.png","keywords":["certificate url","claim url","contact","contactstate","state"],"articleSection":["LeadsHook","Security"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/","url":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/","name":"How to generate your Contact State Claim URL - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Scripts.png","datePublished":"2022-07-27T10:51:05+00:00","dateModified":"2025-06-17T04:51:13+00:00","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Scripts.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Scripts.png","width":467,"height":454},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/how-to-generate-your-contact-state-claim-url\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"How to generate your Contact State Claim URL"}]},{"@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\/646557edf0c248393812c53a8ce7fe8b","name":"Von","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4d8c9fa6fa4af8da43fe4d69a7bddaddadc9d1f7fbaf9363aee7d9187dee60cd?s=96&d=mm&r=g","caption":"Von"},"url":"https:\/\/www.leadshook.com\/help\/author\/voncs-leadshook-com\/"}]}},"_links":{"self":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/5002","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\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/comments?post=5002"}],"version-history":[{"count":8,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/5002\/revisions"}],"predecessor-version":[{"id":7786,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/5002\/revisions\/7786"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=5002"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=5002"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=5002"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}