{"id":4546,"date":"2021-10-19T14:29:40","date_gmt":"2021-10-19T14:29:40","guid":{"rendered":"https:\/\/www.leadshook.com\/help\/?p=4546"},"modified":"2024-02-14T11:40:01","modified_gmt":"2024-02-14T11:40:01","slug":"how-to-transfer-leads-to-klaviyo","status":"publish","type":"post","link":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/","title":{"rendered":"How to Transfer Leads to Klaviyo"},"content":{"rendered":"\n<p>In this article you&#8217;ll learn how to transfer leads to <a href=\"https:\/\/getflg.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Klaviyo<\/a> using API node.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><meta charset=\"utf-8\"><\/meta><strong>Step 1:<\/strong> Add a custom field and name it <strong>{id}<\/strong><\/p>\n\n\n\n<p>The custom field <strong><em>id<\/em><\/strong> is required for the next steps that we will be doing inside the API node. You can check this KB article for more information on <a href=\"https:\/\/www.leadshook.com\/help\/how-to-add-a-custom-field\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Create and Add Custom Fields<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1222\" height=\"646\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-00.24.47.png\" alt=\"\" class=\"wp-image-4550\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\"><meta charset=\"utf-8\"><\/h4>\n\n\n\n<p><strong>Step 2:<\/strong> Get List ID and API Key from your Klaviyo account<\/p>\n\n\n\n<p>You can check these articles from <strong>https:\/\/help.klaviyo.com\/<\/strong> on how to obtain these information:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>How to Find a List ID:<\/strong> <a href=\"https:\/\/help.klaviyo.com\/hc\/en-us\/articles\/115005078647-How-to-Find-a-List-ID\">https:\/\/help.klaviyo.com\/hc\/en-us\/articles\/115005078647-How-to-Find-a-List-ID<\/a><\/li>\n\n\n\n<li><strong>How to Find your API keys<\/strong>: <a href=\"https:\/\/help.klaviyo.com\/hc\/en-us\/articles\/115005062267-How-to-Manage-Your-Account-s-API-Keys#find-your-api-keys1\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/help.klaviyo.com\/hc\/en-us\/articles\/115005062267-How-to-Manage-Your-Account-s-API-Keys#find-your-api-keys1<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Difference Between Public and Private API Keys<a href=\"https:\/\/help.klaviyo.com\/hc\/en-us\/articles\/115005062267-How-to-Manage-Your-Account-s-API-Keys#difference-between-public-and-private-api-keys1\"><\/a><\/h2>\n\n\n\n<p>Your public API key is also called your&nbsp;<em>Site ID<\/em>. This is a short alphanumeric value. This public key is a unique identifier for your Klaviyo account, and there is only one per account. It is safe to expose your public API key, as this key cannot be used to access data in your Klaviyo account.<\/p>\n\n\n\n<p><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\"><strong>Your Private API Key is the one you need for Klaviyo integration.<\/strong><\/mark> Private API keys are used for reading data from Klaviyo and manipulating some sensitive objects such as lists. Treat private API keys like passwords kept in a safe place and never exposed to the public. A Klaviyo account can generate as many private API keys as needed.\u00a0<\/p>\n\n\n\n<p>In case you have trouble finding your List ID or API Key, please contact <strong><a href=\"https:\/\/help.klaviyo.com\/hc\/en-us\" target=\"_blank\" rel=\"noreferrer noopener\">Klaviyo Support<\/a><\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Step 3: <\/strong>Add an API node to your Decision Tree<\/p>\n\n\n\n<p>You will find the API node on the list of nodes when you click <strong>Add New Module<\/strong>. For more information about using API nodes you can refer to this KB article on <a href=\"https:\/\/www.leadshook.com\/help\/how-to-use-the-api-node\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Use the API Node<\/a>.<\/p>\n\n\n\n<p>Please refer to the image and instructions below on how to setup the API node.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1241\" height=\"784\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2022\/07\/Klaviyo.png\" alt=\"\" class=\"wp-image-4998\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Method<\/strong>: POST<\/li>\n\n\n\n<li><strong>Request URL<\/strong>: https:\/\/a.klaviyo.com\/api\/v2\/list\/<strong>LIST_ID<\/strong>\/members?api_key=<strong>PRIVATE_API_KEY<\/strong><\/li>\n\n\n\n<li><strong>Body<\/strong>: JSON<\/li>\n\n\n\n<li><strong>JSON content:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n     \"profiles\": &#91;\n          {\n               \"email\": \"{email}\",\n               \"first_name\": \"{first_name}\",\n               \"last_name\": \"{last_name}\"\n          }\n     ]\n}<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Headers<\/strong>: Accept: application\/json, Content<strong>&#8211;<\/strong>Type: application\/json<\/li>\n<\/ul>\n\n\n\n<p><br>Input the data you want to send to Klaviyo in the JSON code. Each object in the profiles array must have an <strong>email<\/strong> or <strong>phone_number<\/strong>. You can also provide additional properties as <strong><em>key-value pairs<\/em><\/strong>.<\/p>\n\n\n\n<p><strong>Step 4:<\/strong> Map Response Property to Custom Field <strong>{id}<\/strong><\/p>\n\n\n\n<p>Scroll down to the bottom of the API node to see <strong>Fieldmapper<\/strong> section.<br>Enter response property &#8220;id&#8221; and enter field name &#8220;id&#8221;. <br>This is the custom field we created on <strong>Step 1<\/strong> of this article.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1413\" height=\"329\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-21.50.15.png\" alt=\"\" class=\"wp-image-4567\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1405\" height=\"264\" src=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-21.50.27.png\" alt=\"\" class=\"wp-image-4568\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Step 5:<\/strong> Test and Save API node<\/p>\n\n\n\n<p>You can use the <strong>Test Request<\/strong> button to test the API request. Save your API node and proceed to the Results node (or whichever is the next node) on your DT.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><meta charset=\"utf-8\">For more information about using API nodes you can refer to this KB article on <a href=\"https:\/\/www.leadshook.com\/help\/how-to-use-the-api-node\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Use the API Node<\/a>.<\/p>\n\n\n\n<p>You can also refer to <strong>Klaviyo API documentation<\/strong> regarding <a href=\"https:\/\/apidocs.klaviyo.com\/reference\/lists-segments#add-members\" target=\"_blank\" rel=\"noreferrer noopener\">Adding Members to a List<\/a> for more information.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article you&#8217;ll learn how to transfer leads to Klaviyo using API node. Step 1: Add a custom field and name it {id} The custom field id is required for the next steps that we will be doing inside the API node. You can check this KB article for more information on How to [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27,291,12,259,281],"tags":[860,861,859],"class_list":["post-4546","post","type-post","status-publish","format-standard","hentry","category-decision-tree","category-lead-distribution","category-leadshook","category-nodes","category-webhooks","tag-klaviyo","tag-leadshook-to-klaviyo","tag-transfer-leads-to-klaviyo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Transfer Leads to Klaviyo - LeadsHook Knowledge Base<\/title>\n<meta name=\"description\" content=\"In this article you&#039;ll learn how to transfer leads from your LeadsHook Decision Tree to Klaviyo using API node. You will need Klaviyo List ID and API key.\" \/>\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-transfer-leads-to-klaviyo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Transfer Leads to Klaviyo - LeadsHook Knowledge Base\" \/>\n<meta property=\"og:description\" content=\"In this article you&#039;ll learn how to transfer leads from your LeadsHook Decision Tree to Klaviyo using API node. You will need Klaviyo List ID and API key.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/\" \/>\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=\"2021-10-19T14:29:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-14T11:40:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-00.24.47.png\" \/>\n<meta name=\"author\" content=\"Nik T\" \/>\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=\"Nik T\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 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-transfer-leads-to-klaviyo\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/\"},\"author\":{\"name\":\"Nik T\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#\\\/schema\\\/person\\\/4bfe37d814563cc729828b7055313f4d\"},\"headline\":\"How to Transfer Leads to Klaviyo\",\"datePublished\":\"2021-10-19T14:29:40+00:00\",\"dateModified\":\"2024-02-14T11:40:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/\"},\"wordCount\":504,\"publisher\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screen-Shot-2021-10-19-at-00.24.47.png\",\"keywords\":[\"klaviyo\",\"Leadshook to Klaviyo\",\"Transfer Leads to Klaviyo\"],\"articleSection\":[\"Decision Tree\",\"Lead Distribution\",\"LeadsHook\",\"Nodes\",\"Webhooks\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/\",\"name\":\"How to Transfer Leads to Klaviyo - LeadsHook Knowledge Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screen-Shot-2021-10-19-at-00.24.47.png\",\"datePublished\":\"2021-10-19T14:29:40+00:00\",\"dateModified\":\"2024-02-14T11:40:01+00:00\",\"description\":\"In this article you'll learn how to transfer leads from your LeadsHook Decision Tree to Klaviyo using API node. You will need Klaviyo List ID and API key.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screen-Shot-2021-10-19-at-00.24.47.png\",\"contentUrl\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screen-Shot-2021-10-19-at-00.24.47.png\",\"width\":1222,\"height\":646},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/how-to-transfer-leads-to-klaviyo\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Transfer Leads to Klaviyo\"}]},{\"@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\\\/4bfe37d814563cc729828b7055313f4d\",\"name\":\"Nik T\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g\",\"caption\":\"Nik T\"},\"sameAs\":[\"http:\\\/\\\/www.LeadsHook.com\"],\"url\":\"https:\\\/\\\/www.leadshook.com\\\/help\\\/author\\\/nik\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Transfer Leads to Klaviyo - LeadsHook Knowledge Base","description":"In this article you'll learn how to transfer leads from your LeadsHook Decision Tree to Klaviyo using API node. You will need Klaviyo List ID and API key.","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-transfer-leads-to-klaviyo\/","og_locale":"en_US","og_type":"article","og_title":"How to Transfer Leads to Klaviyo - LeadsHook Knowledge Base","og_description":"In this article you'll learn how to transfer leads from your LeadsHook Decision Tree to Klaviyo using API node. You will need Klaviyo List ID and API key.","og_url":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/","og_site_name":"LeadsHook Knowledge Base","article_publisher":"https:\/\/www.facebook.com\/leadshook\/","article_published_time":"2021-10-19T14:29:40+00:00","article_modified_time":"2024-02-14T11:40:01+00:00","og_image":[{"url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-00.24.47.png","type":"","width":"","height":""}],"author":"Nik T","twitter_card":"summary_large_image","twitter_creator":"@leadshook","twitter_site":"@leadshook","twitter_misc":{"Written by":"Nik T","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/#article","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/"},"author":{"name":"Nik T","@id":"https:\/\/www.leadshook.com\/help\/#\/schema\/person\/4bfe37d814563cc729828b7055313f4d"},"headline":"How to Transfer Leads to Klaviyo","datePublished":"2021-10-19T14:29:40+00:00","dateModified":"2024-02-14T11:40:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/"},"wordCount":504,"publisher":{"@id":"https:\/\/www.leadshook.com\/help\/#organization"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-00.24.47.png","keywords":["klaviyo","Leadshook to Klaviyo","Transfer Leads to Klaviyo"],"articleSection":["Decision Tree","Lead Distribution","LeadsHook","Nodes","Webhooks"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/","url":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/","name":"How to Transfer Leads to Klaviyo - LeadsHook Knowledge Base","isPartOf":{"@id":"https:\/\/www.leadshook.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/#primaryimage"},"image":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/#primaryimage"},"thumbnailUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-00.24.47.png","datePublished":"2021-10-19T14:29:40+00:00","dateModified":"2024-02-14T11:40:01+00:00","description":"In this article you'll learn how to transfer leads from your LeadsHook Decision Tree to Klaviyo using API node. You will need Klaviyo List ID and API key.","breadcrumb":{"@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/#primaryimage","url":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-00.24.47.png","contentUrl":"https:\/\/www.leadshook.com\/help\/wp-content\/uploads\/2021\/10\/Screen-Shot-2021-10-19-at-00.24.47.png","width":1222,"height":646},{"@type":"BreadcrumbList","@id":"https:\/\/www.leadshook.com\/help\/how-to-transfer-leads-to-klaviyo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.leadshook.com\/help\/"},{"@type":"ListItem","position":2,"name":"How to Transfer Leads to Klaviyo"}]},{"@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\/4bfe37d814563cc729828b7055313f4d","name":"Nik T","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/48d53e68db0b1db1cd5c54a750130fb2ee0c663306ff1bd434373f1a368ef7a0?s=96&d=mm&r=g","caption":"Nik T"},"sameAs":["http:\/\/www.LeadsHook.com"],"url":"https:\/\/www.leadshook.com\/help\/author\/nik\/"}]}},"_links":{"self":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/4546","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/comments?post=4546"}],"version-history":[{"count":26,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/4546\/revisions"}],"predecessor-version":[{"id":7019,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/posts\/4546\/revisions\/7019"}],"wp:attachment":[{"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/media?parent=4546"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/categories?post=4546"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.leadshook.com\/help\/wp-json\/wp\/v2\/tags?post=4546"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}