{"id":7707,"date":"2025-03-15T12:46:21","date_gmt":"2025-03-15T12:46:21","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=7707"},"modified":"2025-03-15T12:46:23","modified_gmt":"2025-03-15T12:46:23","slug":"how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/","title":{"rendered":"How to get the 2 letter US state abbreviation when using google places integration"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">If you are using Google Places integration, the field mapping for state returns as the full state name. We can use a custom script to get the 2 letter state abbreviation.<\/h3>\n\n\n\n<p><strong>Step 1:<\/strong> Make sure that you are mapping the state to your {state} custom field. This is done under Data Validation > Third Party Address Validation.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"485\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-1024x485.png\" alt=\"\" class=\"wp-image-7708\" style=\"width:553px;height:auto\" srcset=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-1024x485.png 1024w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-300x142.png 300w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-768x364.png 768w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-1536x727.png 1536w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-2048x970.png 2048w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-60x28.png 60w, https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-150x71.png 150w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>Step 2:<\/strong> Create a custom field called {state_ab} under Admin > Custom Fields (Use text type)<\/p>\n\n\n\n<p><strong>Step 3:<\/strong> Create a node level script on your form node or Q&amp;A node with address and set to run on Exit. We also recommend using a transition node and create enter script.<\/p>\n\n\n\n<p><strong>Step 4: <\/strong>Copy paste this script:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script>\n  \/\/ Function to convert state name to 2-letter abbreviation\nfunction convertStateToAbbreviation(stateName) {\n  \/\/ Object mapping state names to their abbreviations\n  const stateAbbreviations = {\n    'alabama': 'AL',\n    'alaska': 'AK',\n    'arizona': 'AZ',\n    'arkansas': 'AR',\n    'california': 'CA',\n    'colorado': 'CO',\n    'connecticut': 'CT',\n    'delaware': 'DE',\n    'florida': 'FL',\n    'georgia': 'GA',\n    'hawaii': 'HI',\n    'idaho': 'ID',\n    'illinois': 'IL',\n    'indiana': 'IN',\n    'iowa': 'IA',\n    'kansas': 'KS',\n    'kentucky': 'KY',\n    'louisiana': 'LA',\n    'maine': 'ME',\n    'maryland': 'MD',\n    'massachusetts': 'MA',\n    'michigan': 'MI',\n    'minnesota': 'MN',\n    'mississippi': 'MS',\n    'missouri': 'MO',\n    'montana': 'MT',\n    'nebraska': 'NE',\n    'nevada': 'NV',\n    'new hampshire': 'NH',\n    'new jersey': 'NJ',\n    'new mexico': 'NM',\n    'new york': 'NY',\n    'north carolina': 'NC',\n    'north dakota': 'ND',\n    'ohio': 'OH',\n    'oklahoma': 'OK',\n    'oregon': 'OR',\n    'pennsylvania': 'PA',\n    'rhode island': 'RI',\n    'south carolina': 'SC',\n    'south dakota': 'SD',\n    'tennessee': 'TN',\n    'texas': 'TX',\n    'utah': 'UT',\n    'vermont': 'VT',\n    'virginia': 'VA',\n    'washington': 'WA',\n    'west virginia': 'WV',\n    'wisconsin': 'WI',\n    'wyoming': 'WY',\n    'district of columbia': 'DC'\n  };\n\n  \/\/ Handle potential variations in input\n  const normalizedState = stateName.trim().toLowerCase();\n  \n  \/\/ Return the abbreviation if found, otherwise return the original state name\n  return stateAbbreviations&#91;normalizedState] || stateName;\n}\n\nconst state = \"{state}\";\nconst stateAbbreviation = convertStateToAbbreviation(state);\n\n\/\/ Output the result to console\nconsole.log(stateAbbreviation);\nDT.setField('state_ab', stateAbbreviation);\n&lt;\/script><\/code><\/pre>\n\n\n\n<p><strong>Step 5:<\/strong> The value will be saved to your {state_ab} custom field<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you are using Google Places integration, the field mapping for state returns as the full state name. We can use a custom script to get the 2 letter state abbreviation. Step 1: Make sure that you are mapping the state to your {state} custom field. This is done under Data Validation > Third Party [&hellip;]<\/p>\n","protected":false},"author":14,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[1090,1091,567,875,1089],"class_list":["post-7707","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-abbreviation","tag-google-places","tag-script","tag-state","tag-us-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 get the 2 letter US state abbreviation when using google places integration - 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-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to get the 2 letter US state abbreviation when using google places integration - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"If you are using Google Places integration, the field mapping for state returns as the full state name. We can use a custom script to get the 2 letter state abbreviation. Step 1: Make sure that you are mapping the state to your {state} custom field. This is done under Data Validation &gt; Third Party [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/\" \/>\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=\"2025-03-15T12:46:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-15T12:46:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2336\" \/>\n\t<meta property=\"og:image:height\" content=\"1106\" \/>\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=\"1 minute\" \/>\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-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/\"},\"author\":{\"name\":\"Von\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/646557edf0c248393812c53a8ce7fe8b\"},\"headline\":\"How to get the 2 letter US state abbreviation when using google places integration\",\"datePublished\":\"2025-03-15T12:46:21+00:00\",\"dateModified\":\"2025-03-15T12:46:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/\"},\"wordCount\":133,\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Screenshot-2025-03-15-204013-1024x485.png\",\"keywords\":[\"abbreviation\",\"google places\",\"script\",\"state\",\"us state\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/\",\"name\":\"How to get the 2 letter US state abbreviation when using google places integration - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Screenshot-2025-03-15-204013-1024x485.png\",\"datePublished\":\"2025-03-15T12:46:21+00:00\",\"dateModified\":\"2025-03-15T12:46:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Screenshot-2025-03-15-204013.png\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Screenshot-2025-03-15-204013.png\",\"width\":2336,\"height\":1106},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to get the 2 letter US state abbreviation when using google places integration\"}]},{\"@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 get the 2 letter US state abbreviation when using google places integration - 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-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/","og_locale":"en_US","og_type":"article","og_title":"How to get the 2 letter US state abbreviation when using google places integration - LeadsHook Knowledge Base","og_description":"If you are using Google Places integration, the field mapping for state returns as the full state name. We can use a custom script to get the 2 letter state abbreviation. Step 1: Make sure that you are mapping the state to your {state} custom field. This is done under Data Validation > Third Party [&hellip;]","og_url":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2025-03-15T12:46:21+00:00","article_modified_time":"2025-03-15T12:46:23+00:00","og_image":[{"width":2336,"height":1106,"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013.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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/"},"author":{"name":"Von","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/646557edf0c248393812c53a8ce7fe8b"},"headline":"How to get the 2 letter US state abbreviation when using google places integration","datePublished":"2025-03-15T12:46:21+00:00","dateModified":"2025-03-15T12:46:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/"},"wordCount":133,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-1024x485.png","keywords":["abbreviation","google places","script","state","us state"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/","url":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/","name":"How to get the 2 letter US state abbreviation when using google places integration - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013-1024x485.png","datePublished":"2025-03-15T12:46:21+00:00","dateModified":"2025-03-15T12:46:23+00:00","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2025\/03\/Screenshot-2025-03-15-204013.png","width":2336,"height":1106},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/how-to-get-the-2-letter-us-state-abbreviation-when-using-google-places-integration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"How to get the 2 letter US state abbreviation when using google places integration"}]},{"@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\/7707","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=7707"}],"version-history":[{"count":1,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/7707\/revisions"}],"predecessor-version":[{"id":7709,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/7707\/revisions\/7709"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=7707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=7707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=7707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}