{"id":3720,"date":"2020-12-16T16:09:53","date_gmt":"2020-12-16T16:09:53","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=3720"},"modified":"2024-02-14T11:40:29","modified_gmt":"2024-02-14T11:40:29","slug":"how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/","title":{"rendered":"How to Encode Custom Fields being passed via Exit URL redirect from results node."},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This guide will enable you to encode the custom fields being passed via the Results node Exit URL going to your External thank you page.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In some cases you&#8217;ll need this to comply with your ad platform&#8217;s data privacy requirements.  Example:  Here&#8217;s a violation notice from Facebook&#8230;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"781\" height=\"501\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/07\/2021-07-21_19-45-14.jpg\" alt=\"\" class=\"wp-image-4236\"\/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><br>Take note, Leadshook will encode it on our side before sending, but you will need to encode it on your page builder. So you need to make sure if your Page builder is capable of using Javascripts upon receiving the URL payload.<\/p>\n\n\n\n<p class=\"has-luminous-vivid-amber-background-color has-background wp-block-paragraph\"><strong>TIP!<\/strong>  Please edit your variables to something not easily recognizable.  So don&#8217;t use names like firstname, first_name, name etc in your exit urls.  <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Please watch this short video for the flow of data and be sure to import the sample decision trees in your LeadsHook account.  Download files are included below&#8230;<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-vimeo wp-block-embed-vimeo wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe src=\"https:\/\/player.vimeo.com\/video\/542466330?dnt=1&amp;app_id=122963\" width=\"980\" height=\"551\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\"><strong>Download Sample Decision Trees<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/04\/encrypt-send-data-part-1_2021-04-28.zip\" target=\"_blank\" rel=\"noreferrer noopener\">Part 1: Encode &amp; Send Data<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/04\/receive-encrypted-data-decrypt-part-2_2021-04-28.zip\" target=\"_blank\" rel=\"noreferrer noopener\">Part 2: Capture &amp; Decode Data<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading has-medium-font-size\"><strong>Data Encode &amp; Decode Steps<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 1: <\/strong>Add the Encode script below on the node before your results node which has the redirect.<br>Make sure to set it to &#8220;ENTER&#8221;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script&gt;   \nvar fname = '{first_name}';   \nvar lname = '{first_name}';\nvar enc = window.btoa(fname); \nvar enc2 = window.btoa(lname);     \nDT.setField('first_name', enc); \nDT.setField('last_name', enc2); \n&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">With this code example, it basically encodes them one by one so you can use them on your Exit URL. You can also add and encode as many custom fields to the URL. <br><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 2:<\/strong> Edit your Results page &#8220;Exit URL&#8221; to something like this.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><span style=\"color:#cf2e2e\" class=\"tadv-color\">&#8220;https:\/\/www.yourdomain.com?first_name={first_name}&amp;last_name={last_name}&#8221;<\/span><\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Where you need to add the custom fields that you want to pass at the end just like how you would set it up as a normal Exit Redirect passing URL parameters.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This will basically redirect to your landing page domain + the URL parameters that you encoded previously.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 3:<\/strong> Save and republish and this should redirect with an encoded custom field via the URL params.<br><br><strong>Step 4:<\/strong> Last step is to decode it within your Landing page. You can use the script below.<br><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script&gt;   \nvar fname = '{first_name}';   \nvar lname = '{last_name}';   \nvar dec = window.atob(fname);   \nvar dec2 = window.atob(lname);   \nDT.setField('first_name', dec);   \nDT.setField('last_name', dec2); \n&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">So what&#8217;s happening here is that your landing page is decrypting the custom field being passed from Leadshook. It should then print out the values.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In case if you want to pass and Encode the whole Exit URL, then you will need to use this Encode Script.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script&gt;   \nvar URL = 'https:\/\/www.yourdomain.com?field1={field1}&amp;field2={field2}';   \nvar enc = window.btoa(URL);   \nDT.setField('URL', enc); \n&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><br><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction This guide will enable you to encode the custom fields being passed via the Results node Exit URL going to your External thank you page. In some cases you&#8217;ll need this to comply with your ad platform&#8217;s data privacy requirements. Example: Here&#8217;s a violation notice from Facebook&#8230; Take note, Leadshook will encode it on [&hellip;]<\/p>\n","protected":false},"author":18,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,259,154,620,26],"tags":[790,789,791],"class_list":["post-3720","post","type-post","status-publish","format-standard","hentry","category-leadshook","category-nodes","category-results-page","category-scripts","category-security","tag-decrypt","tag-encrypt","tag-exit-url"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Encode Custom Fields being passed via Exit URL redirect from results node. - 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-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Encode Custom Fields being passed via Exit URL redirect from results node. - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"Introduction This guide will enable you to encode the custom fields being passed via the Results node Exit URL going to your External thank you page. In some cases you&#8217;ll need this to comply with your ad platform&#8217;s data privacy requirements. Example: Here&#8217;s a violation notice from Facebook&#8230; Take note, Leadshook will encode it on [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/\" \/>\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=\"2020-12-16T16:09:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-14T11:40:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/07\/2021-07-21_19-45-14.jpg\" \/>\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-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/\"},\"author\":{\"name\":\"Sheetal\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/5139261061a0c92dc7aa58dcd033094c\"},\"headline\":\"How to Encode Custom Fields being passed via Exit URL redirect from results node.\",\"datePublished\":\"2020-12-16T16:09:53+00:00\",\"dateModified\":\"2024-02-14T11:40:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/\"},\"wordCount\":388,\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/2021-07-21_19-45-14.jpg\",\"keywords\":[\"Decrypt\",\"Encrypt\",\"Exit URL\"],\"articleSection\":[\"LeadsHook\",\"Nodes\",\"Results page\",\"Scripts\",\"Security\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/\",\"name\":\"How to Encode Custom Fields being passed via Exit URL redirect from results node. - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/2021-07-21_19-45-14.jpg\",\"datePublished\":\"2020-12-16T16:09:53+00:00\",\"dateModified\":\"2024-02-14T11:40:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/2021-07-21_19-45-14.jpg\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/2021-07-21_19-45-14.jpg\",\"width\":781,\"height\":501},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Encode Custom Fields being passed via Exit URL redirect from results node.\"}]},{\"@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 Encode Custom Fields being passed via Exit URL redirect from results node. - 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-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/","og_locale":"en_US","og_type":"article","og_title":"How to Encode Custom Fields being passed via Exit URL redirect from results node. - LeadsHook Knowledge Base","og_description":"Introduction This guide will enable you to encode the custom fields being passed via the Results node Exit URL going to your External thank you page. In some cases you&#8217;ll need this to comply with your ad platform&#8217;s data privacy requirements. Example: Here&#8217;s a violation notice from Facebook&#8230; Take note, Leadshook will encode it on [&hellip;]","og_url":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2020-12-16T16:09:53+00:00","article_modified_time":"2024-02-14T11:40:29+00:00","og_image":[{"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/07\/2021-07-21_19-45-14.jpg","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-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/"},"author":{"name":"Sheetal","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/5139261061a0c92dc7aa58dcd033094c"},"headline":"How to Encode Custom Fields being passed via Exit URL redirect from results node.","datePublished":"2020-12-16T16:09:53+00:00","dateModified":"2024-02-14T11:40:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/"},"wordCount":388,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/07\/2021-07-21_19-45-14.jpg","keywords":["Decrypt","Encrypt","Exit URL"],"articleSection":["LeadsHook","Nodes","Results page","Scripts","Security"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/","url":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/","name":"How to Encode Custom Fields being passed via Exit URL redirect from results node. - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/07\/2021-07-21_19-45-14.jpg","datePublished":"2020-12-16T16:09:53+00:00","dateModified":"2024-02-14T11:40:29+00:00","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/07\/2021-07-21_19-45-14.jpg","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/07\/2021-07-21_19-45-14.jpg","width":781,"height":501},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/how-to-encrypt-custom-fields-being-passed-via-exit-url-redirect-from-results-node\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"How to Encode Custom Fields being passed via Exit URL redirect from results node."}]},{"@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\/3720","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=3720"}],"version-history":[{"count":17,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/3720\/revisions"}],"predecessor-version":[{"id":7040,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/3720\/revisions\/7040"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=3720"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=3720"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=3720"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}