{"id":407,"date":"2024-09-21T20:47:45","date_gmt":"2024-09-21T17:47:45","guid":{"rendered":"https:\/\/help.testbh.ru\/?p=407"},"modified":"2026-04-21T09:37:53","modified_gmt":"2026-04-21T06:37:53","slug":"peredacha-dannyh-iz-formy-registraczii-getcourse","status":"publish","type":"post","link":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/","title":{"rendered":"Transmitting data from the registration form"},"content":{"rendered":"<p>Using the scripts described below, you can transfer data from the GetCourse registration form to the BotHelp flow:<\/p>\n<ul>\n<li>the data specified by the person in the registration form (full name, email, phone, other fields);<\/li>\n<li>UTM tags from the link of the registration form page;<\/li>\n<li>other get parameters from the link on the registration form page.<\/li>\n<\/ul>\n<p>In order for this data to be transmitted, you have to set up the GetCourse registration form.<\/p>\n<p><strong>1. Form settings for transmitting data from pages created in GetCourse<\/strong><\/p>\n<p>Firstly, you need to create a page on GetCourse and add a standard form with the necessary fields to it.<br \/>\n<img decoding=\"async\" class=\"fr-fic fr-dib\" src=\"https:\/\/files.carrotquest.io\/knowledge-bases-images\/articles\/49290\/49290-1666099312047-v2biyoqq.png\" \/><\/p>\n<p><strong>Important!<\/strong> If you check the box &#8220;Hide if filled in&#8221; in the settings of a specific form field, the data from this field will not be transmitted to BotHelp.<\/p>\n<p><img decoding=\"async\" class=\"fr-fic fr-dib\" src=\"https:\/\/files.carrotquest.io\/knowledge-bases-images\/articles\/49290\/49290-1668187060477-nkpm4sbp.png\" \/><\/p>\n<p>To transfer data from the form, go to the form settings on GetCourse, then to the &#8220;Form Handler&#8221; section. Add an arbitrary &#8220;JavaScript Call&#8221; action there and paste the data transfer code into the field that opens (it is given below).<\/p>\n<p><img decoding=\"async\" class=\"fr-fic fr-dib\" src=\"https:\/\/files.carrotquest.io\/knowledge-bases-images\/articles\/49290\/49290-1666104599629-w0yqp7ja.gif\" \/><\/p>\n<pre>\/**\r\n* Script for passing form data as query parameters to a page with widget buttons\r\n*\/\r\n\r\n(() =&gt; {\r\nconst FORM_CONTAINER_CLASS = \"registration-form\";\r\nconst REDIRECT_URL = \"https:\/\/www.google.com\/\";\r\n\r\nconst windowRef = window.top !== window.window ? window.top?.[0] ?? window.top : window;\r\nconst elementVisible = (elem) =&gt; elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length;\r\nconst formSelector = `.${FORM_CONTAINER_CLASS.replace(\".\", \"\")} form`;\r\nconst form = document.querySelector(formSelector);\r\n\r\nconst url = new URL(REDIRECT_URL);\r\n\r\nconst windowSearchParams = new URLSearchParams(windowRef.location.search);\r\nwindowSearchParams.delete(\"ref\");\r\nwindowSearchParams.delete(\"loc\");\r\nwindowSearchParams.forEach((value, key) =&gt; {\r\nvalue = value.trim();\r\nif (value) {\r\nurl.searchParams.set(key.toLowerCase(), value);\r\n}\r\n});\r\n\r\nconst formData = new FormData(form);\r\nformData.forEach((value, key) =&gt; {\r\nconst el = form.querySelector(`[name=\"${key}\"]`);\r\nconst isFormValue = key.includes(\"[\") &amp;&amp; key.includes(\"]\");\r\nif (elementVisible(el) &amp;&amp; value &amp;&amp; isFormValue) {\r\nkey = key.match(\/\\[(.*)]\/)[1];\r\nkey = key === \"full_name\" ? \"name\" : key;\r\n\r\nvalue = value.trim();\r\nif (value) {\r\nurl.searchParams.set(key.toLowerCase(), value);\r\n}\r\n}\r\n});\r\n\r\nwindowRef.location.href = url.href;\r\n})();\r\n\r\n<\/pre>\n<p><strong>Important!<\/strong> This script works specifically for the registration form, which is located on the pages of the site created in GetCourse itself. If you are using the GetCourse registration form as a widget for other website builders, then use the script from the next section.<\/p>\n<p>In the second line of the code, <code>const REDIRECT_URL = \"https:\/\/www.your_page_for_redirect.com\";<\/code> instead of an example link <code>https:\/\/www.your_page_for_redirect.com<\/code> you need to specify a link to the page where the redirect will be performed from the current page with the registration form. For example:<\/p>\n<ul>\n<li>To the &#8220;Thank You&#8221; page with widget buttons. On this page, the person will be able to subscribe to the flow by clicking on the widget button.<\/li>\n<li>To the Telegram flow (<strong>this option won&#8217;t work for other messengers<\/strong>). It is important to form such a direct link <a href=\"\/kak-peredat-utm-metki-i-parametry-v-pryamyh-ssylkah-na-botov-telegram\/\">according to our instructions<\/a>. Then, after filling out the registration form, the person will immediately subscribe to the flow.<\/li>\n<\/ul>\n<p><strong>Important!<\/strong> When using this script, you do not need to add the &#8220;Redirect&#8221; action in the form handler. The script itself redirects to the specified page.<\/p>\n<p><strong>Important!<\/strong> If you add additional arbitrary actions, they have to be placed above the &#8220;JavaScript Call&#8221; action, since the code contains a redirect to the next page. If this is not done, subsequent arbitrary actions will not be performed.<\/p>\n<p><strong>Important!<\/strong> Make sure that the CSS style is present in the form. To do this, go to settings by clicking the <strong>Style<\/strong> button. The &#8220;registration-form&#8221; style should be specified in the lowest field of the &#8220;CSS class of the block&#8221;.<\/p>\n<p><img decoding=\"async\" class=\"fr-fic fr-dii\" src=\"https:\/\/files.carrotquest.app\/knowledge-bases-images\/articles\/49290\/49290-1718096614808-bvlgy5b2.png\" \/><br \/>\n<strong><br \/>\n2. GetCourse widget settings for transmitting data from pages created on other site builders<\/strong><\/p>\n<p>When creating the widget, select &#8220;Form&#8221; and then go to the form settings. Add an arbitrary &#8220;JavaScript Call&#8221; action and set the code for data transmission in the field that opens.<br \/>\nThe widget code does not require any additional settings or parameters.<\/p>\n<p><img decoding=\"async\" class=\"fr-fic fr-dib\" src=\"https:\/\/files.carrotquest.io\/knowledge-bases-images\/articles\/49290\/49290-1666102901846-vmgsrmpk.gif\" \/><\/p>\n<p>The main difference between the form settings and the widget form settings is the absence of CSS styles in the latter. Styles have to be added manually.<\/p>\n<p>The style for the form on the page was<code>registration-form<\/code>, the same style should be used for the widget.<\/p>\n<p><strong>Important!<\/strong> Make sure to check that the CSS style is present in the form. To do this, go to settings by clicking the <strong>Style<\/strong> button. The &#8220;registration-form&#8221; style should be specified in the lowest field of the &#8220;CSS class of the block&#8221;.<\/p>\n<p><img decoding=\"async\" class=\"fr-fic fr-dib\" src=\"https:\/\/files.carrotquest.io\/knowledge-bases-images\/articles\/49290\/49290-1668428153050-4uoc3sto.png\" \/><br \/>\n<strong><br \/>\nIMPORTANT!<\/strong> If you want to set a different style for the widget, specify the same style in the first line of the data transfer code:<\/p>\n<p><code>(() =&gt; { const FORM_CONTAINER_CLASS = \"your-chosen-style\";<br \/>\n<\/code><br \/>\nTo transfer data from the form, go to the form settings on GetCourse. In the settings, in the &#8220;Form Handler&#8221; section, you have to add an arbitrary action, namely &#8220;JavaScript Call&#8221; and insert the code for data transfer into the field that opens.<\/p>\n<pre>\/**\r\n* Script for passing form data as query parameters to a page with widget buttons\r\n*\/\r\n\r\n(() =&gt; {\r\nconst FORM_CONTAINER_CLASS = \"registration-form\";\r\nconst REDIRECT_URL = \"https:\/\/www.google.com\/\";\r\n\r\nconst windowRef = window.top !== window.window ? window.top : window;\r\nconst elementVisible = (elem) =&gt; elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length;\r\nconst formSelector = `.${FORM_CONTAINER_CLASS.replace(\".\", \"\")} form`;\r\nconst form = document.querySelector(formSelector);\r\n\r\nconst url = new URL(REDIRECT_URL);\r\n\r\nconst windowSearchParams = new URLSearchParams(windowRef.location.search);\r\nwindowSearchParams.forEach((value, key) =&gt; {\r\nvalue = value.trim();\r\nif (value) {\r\nurl.searchParams.set(key.toLowerCase(), value);\r\n}\r\n});\r\n\r\nconst formData = new FormData(form);\r\nformData.forEach((value, key) =&gt; {\r\nconst el = form.querySelector(`[name=\"${key}\"]`);\r\nconst isFormValue = key.includes(\"[\") &amp;&amp; key.includes(\"]\");\r\nif (elementVisible(el) &amp;&amp; value &amp;&amp; isFormValue) {\r\nkey = key.match(\/\\[(.*)]\/)[1];\r\nkey = key === \"full_name\" ? \"name\" : key;\r\n\r\nvalue = value.trim();\r\nif (value) {\r\nurl.searchParams.set(key.toLowerCase(), value);\r\n}\r\n}\r\n});\r\n\r\nwindowRef.location.href = url.href;\r\n})();<\/pre>\n<p><strong>Important!<\/strong> This script works specifically for the registration form in the form of a widget, which is located on the pages of a site made in other constructors, and not on GetCourse.<\/p>\n<p>In the second line of the code, <code>const REDIRECT_URL = \"https:\/\/www.your_page_for_redirect.com\";<\/code> instead of an example link&nbsp;<code>https:\/\/www.your_page_for_redirect.com<\/code> you have to specify the link to which the redirect will be performed from the current page with the registration form. For example:<\/p>\n<ul>\n<li>To the &#8220;Thank You&#8221; page with widget buttons. On this page, the person will be able to subscribe to the flow by clicking the widget button;<\/li>\n<li>To the Telegram flow (this option won&#8217;t work for other messengers). It is important to form such a direct link <a href=\"\/kak-peredat-utm-metki-i-parametry-v-pryamyh-ssylkah-na-botov-telegram\/\">according to our instructions<\/a>. Then, after filling out the registration form, the person will immediately subscribe to the flow.<\/li>\n<\/ul>\n<p><strong>Important!<\/strong>&nbsp;When using this script, you do not need to add the &#8220;Redirect&#8221; action in the form handler. The script itself will redirect to the specified page.<\/p>\n<p><strong>Important!<\/strong> If you add additional arbitrary actions, they have to be placed above the &#8220;JavaScript Call&#8221; action, since the code contains a redirect to the next page. If this is not done, then subsequent arbitrary actions will not be performed.<\/p>\n<p><strong>FAQ<\/strong><\/p>\n<p><strong>Can the widget be placed only on the page created in GetCourse, or on other sites too? Like Tilda, for example?<\/strong><\/p>\n<p>The GetCourse widget can be used on third-party services or on your website.<\/p>\n<hr \/>\n<p>If you haven&#8217;t found the answer to your question, contact us in the chat in your profile or email <a href=\"mailto:hello@bothelp.io\">hello@bothelp.io<\/a>\ud83d\ude03<\/p>\n<p>Get 14 days of full functionality of BotHelp, a platform for creating broadcasting, autofunnels, and chatbots.<\/p>\n<p><strong><a href=\"https:\/\/bothelp.io\/ru?utm_source=bz&amp;utm_medium=footer&amp;utm_campaign=15655\">Get 14 days for free<\/a><\/strong><\/p>\n\r\n\t\t\t<div id=\"daexthefu-container\"\r\n\t\t\t\tclass=\"daexthefu-container daexthefu-layout-side-by-side daexthefu-alignment-left\"\r\n\t\t\t\tdata-post-id=\"407\">\r\n\r\n\t\t\t\t<div class=\"daexthefu-feedback\">\r\n\t\t\t\t\t<div class=\"daexthefu-text\">\r\n\t\t\t\t\t\t<h3 class=\"daexthefu-title\">\u0411\u044b\u043b\u0430 \u043b\u0438 \u0441\u0442\u0430\u0442\u044c\u044f \u043f\u043e\u043b\u0435\u0437\u043d\u0430?<\/h3>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"daexthefu-buttons-container\">\r\n\t\t\t\t\t\t<div class=\"daexthefu-buttons\">\r\n\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefu-yes daexthefu-button daexthefu-button-type-icon\" data-value=\"1\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-up-cls-1{fill:#c9c9c9;}.thumb-up-cls-2{fill:#e1e1e1;}.thumb-up-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_up\">\r\n                        <path class=\"thumb-up-cls-2 daexthefu-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-up-cls-3 daexthefu-icon-secondary-color\" x=\"10\" y=\"20\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefu-icon-primary-color\" d=\"m30.57,9.06l-.49-.1c-.81-.17-1.61.35-1.78,1.16l-5.3,11.74c-.17.81,3.16,1.61,3.97,1.78l1.96.41c.81.17,1.61-.35,1.78-1.16l2.18-10.27c.34-1.61-.7-3.21-2.31-3.56Z\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefu-icon-primary-color\" d=\"m38.17,20h-18.67c-.83,0-1.5.67-1.5,1.5v12c0,.83.67,1.5,1.5,1.5h16.27c.71,0,1.33-.5,1.47-1.21l2.4-12c.19-.93-.53-1.8-1.47-1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefu-no daexthefu-button daexthefu-button-type-icon\" data-value=\"0\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-down-cls-1{fill:#c9c9c9;}.thumb-down-cls-2{fill:#e1e1e1;}.thumb-down-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_down\">\r\n                        <path class=\"thumb-down-cls-2 daexthefu-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-down-cls-3 daexthefu-icon-secondary-color\" x=\"10\" y=\"13\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefu-icon-primary-color\" d=\"m30.57,38.94l-.49.1c-.81.17-1.61-.35-1.78-1.16l-5.3-11.74c-.17-.81,3.16-1.61,3.97-1.78l1.96-.41c.81-.17,1.61.35,1.78,1.16l2.18,10.27c.34,1.61-.7,3.21-2.31,3.56Z\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefu-icon-primary-color\" d=\"m38.17,28h-18.67c-.83,0-1.5-.67-1.5-1.5v-12c0-.83.67-1.5,1.5-1.5h16.27c.71,0,1.33.5,1.47,1.21l2.4,12c.19.93-.53,1.8-1.47,1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefu-comment\">\r\n\t\t\t\t\t<div class=\"daexthefu-comment-top-container\">\r\n\t\t\t\t\t\t<label id=\"daexthefu-comment-label\" class=\"daexthefu-comment-label\"><\/label>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"daexthefu-comment-character-counter-container\">\r\n\t\t\t\t\t\t\t\t<div id=\"daexthefu-comment-character-counter-number\"\r\n\t\t\t\t\t\t\t\t\tclass=\"daexthefu-comment-character-counter-number\"><\/div>\r\n\t\t\t\t\t\t\t\t<div class=\"daexthefu-comment-character-counter-text\"><\/div>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<textarea id=\"daexthefu-comment-textarea\" class=\"daexthefu-comment-textarea\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435\"\r\n\t\t\t\t\t\t\t\tmaxlength=\"\r\n\t\t\t\t\t\t\t\t400\t\t\t\t\t\t\t\t\t\"><\/textarea>\r\n\t\t\t\t\t<div class=\"daexthefu-comment-buttons-container\">\r\n\t\t\t\t\t\t<button class=\"daexthefu-comment-submit daexthefu-button\">\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c<\/button>\r\n\t\t\t\t\t\t<button class=\"daexthefu-comment-cancel daexthefu-button\">\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c<\/button>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefu-successful-submission-text\">\u0421\u043f\u0430\u0441\u0438\u0431\u043e \u0437\u0430 \u043e\u0431\u0440\u0430\u0442\u043d\u0443\u044e \u0441\u0432\u044f\u0437\u044c!<\/div>\r\n\r\n\t\t\t<\/div>\r\n\r\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>How to transfer data from the Getcourse registration form to Bothelp for further work.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_helpful_status":1,"footnotes":""},"categories":[23],"tags":[],"class_list":["post-407","post","type-post","status-publish","format-standard","hentry","category-integracziya-s-getcourse"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Transmitting data from the registration form<\/title>\n<meta name=\"description\" content=\"How to transfer data from the Getcourse registration form to Bothelp for further work.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/How%20to%20transfer%20data%20from%20the%20Getcourse%20registration%20form%20to%20Bothelp%20for%20further%20work.\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Transmitting data from the registration form\" \/>\n<meta property=\"og:description\" content=\"How to transfer data from the Getcourse registration form to Bothelp for further work.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/\" \/>\n<meta property=\"og:site_name\" content=\"\u0411\u0430\u0437\u0430 \u0437\u043d\u0430\u043d\u0438\u0439 BotHelp\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/bothelpru\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-21T17:47:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-21T06:37:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/help.bothelp.io\/wp-content\/uploads\/2024\/09\/zapis-ekrana-2025-10-13-v-17.39.50.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"605\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"author\" content=\"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/\"},\"author\":{\"name\":\"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430\",\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/#\\\/schema\\\/person\\\/3725f2e711da03f7380efe93da1a53ca\"},\"headline\":\"Transmitting data from the registration form\",\"datePublished\":\"2024-09-21T17:47:45+00:00\",\"dateModified\":\"2026-04-21T06:37:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/\"},\"wordCount\":827,\"image\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/help.bothelp.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/zapis-ekrana-2025-10-13-v-17.39.50.gif\",\"articleSection\":[\"GetCourse\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/\",\"url\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/\",\"name\":\"\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0444\u043e\u0440\u043c\u044b \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 GetCourse \u0447\u0435\u0440\u0435\u0437 BotHelp | \u0411\u0430\u0437\u0430 \u0437\u043d\u0430\u043d\u0438\u0439\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/help.bothelp.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/zapis-ekrana-2025-10-13-v-17.39.50.gif\",\"datePublished\":\"2024-09-21T17:47:45+00:00\",\"dateModified\":\"2026-04-21T06:37:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/#\\\/schema\\\/person\\\/3725f2e711da03f7380efe93da1a53ca\"},\"description\":\"\u0423\u0437\u043d\u0430\u0439\u0442\u0435, \u043a\u0430\u043a \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0444\u043e\u0440\u043c\u044b \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 GetCourse \u0447\u0435\u0440\u0435\u0437 BotHelp. \u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/#primaryimage\",\"url\":\"https:\\\/\\\/help.bothelp.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/zapis-ekrana-2025-10-13-v-17.39.50.gif\",\"contentUrl\":\"https:\\\/\\\/help.bothelp.io\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/zapis-ekrana-2025-10-13-v-17.39.50.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/peredacha-dannyh-iz-formy-registraczii-getcourse\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"How to Work with BotHelp Service: Setting Up Your Account for Your Business Goals\",\"item\":\"https:\\\/\\\/help.bothelp.io\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Transmitting data from the registration form\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/\",\"name\":\"\u0411\u0430\u0437\u0430 \u0437\u043d\u0430\u043d\u0438\u0439 BotHelp\",\"description\":\"\u0417\u0434\u0435\u0441\u044c \u0432\u044b \u043d\u0430\u0439\u0434\u0435\u0442\u0435 \u043e\u0442\u0432\u0435\u0442\u044b \u043d\u0430 \u0432\u0441\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/help.bothelp.io\\\/#\\\/schema\\\/person\\\/3725f2e711da03f7380efe93da1a53ca\",\"name\":\"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc2c651ad25d8a5ed31aeb69271b32a21caab387207adf0043a317f97bedafbd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc2c651ad25d8a5ed31aeb69271b32a21caab387207adf0043a317f97bedafbd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc2c651ad25d8a5ed31aeb69271b32a21caab387207adf0043a317f97bedafbd?s=96&d=mm&r=g\",\"caption\":\"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430\"},\"url\":\"https:\\\/\\\/help.bothelp.io\\\/en\\\/author\\\/t-karpikova\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Transmitting data from the registration form","description":"How to transfer data from the Getcourse registration form to Bothelp for further work.","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":"How to transfer data from the Getcourse registration form to Bothelp for further work.","og_locale":"en_US","og_type":"article","og_title":"Transmitting data from the registration form","og_description":"How to transfer data from the Getcourse registration form to Bothelp for further work.","og_url":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/","og_site_name":"\u0411\u0430\u0437\u0430 \u0437\u043d\u0430\u043d\u0438\u0439 BotHelp","article_publisher":"https:\/\/www.facebook.com\/bothelpru","article_published_time":"2024-09-21T17:47:45+00:00","article_modified_time":"2026-04-21T06:37:53+00:00","og_image":[{"url":"https:\/\/help.bothelp.io\/wp-content\/uploads\/2024\/09\/zapis-ekrana-2025-10-13-v-17.39.50.gif","width":1024,"height":605,"type":"image\/gif"}],"author":"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/#article","isPartOf":{"@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/"},"author":{"name":"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430","@id":"https:\/\/help.bothelp.io\/#\/schema\/person\/3725f2e711da03f7380efe93da1a53ca"},"headline":"Transmitting data from the registration form","datePublished":"2024-09-21T17:47:45+00:00","dateModified":"2026-04-21T06:37:53+00:00","mainEntityOfPage":{"@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/"},"wordCount":827,"image":{"@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/#primaryimage"},"thumbnailUrl":"https:\/\/help.bothelp.io\/wp-content\/uploads\/2024\/09\/zapis-ekrana-2025-10-13-v-17.39.50.gif","articleSection":["GetCourse"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/","url":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/","name":"\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0444\u043e\u0440\u043c\u044b \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 GetCourse \u0447\u0435\u0440\u0435\u0437 BotHelp | \u0411\u0430\u0437\u0430 \u0437\u043d\u0430\u043d\u0438\u0439","isPartOf":{"@id":"https:\/\/help.bothelp.io\/#website"},"primaryImageOfPage":{"@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/#primaryimage"},"image":{"@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/#primaryimage"},"thumbnailUrl":"https:\/\/help.bothelp.io\/wp-content\/uploads\/2024\/09\/zapis-ekrana-2025-10-13-v-17.39.50.gif","datePublished":"2024-09-21T17:47:45+00:00","dateModified":"2026-04-21T06:37:53+00:00","author":{"@id":"https:\/\/help.bothelp.io\/#\/schema\/person\/3725f2e711da03f7380efe93da1a53ca"},"description":"\u0423\u0437\u043d\u0430\u0439\u0442\u0435, \u043a\u0430\u043a \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0444\u043e\u0440\u043c\u044b \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u0438 GetCourse \u0447\u0435\u0440\u0435\u0437 BotHelp. \u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0430\u0446\u0438\u0438.","breadcrumb":{"@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/#primaryimage","url":"https:\/\/help.bothelp.io\/wp-content\/uploads\/2024\/09\/zapis-ekrana-2025-10-13-v-17.39.50.gif","contentUrl":"https:\/\/help.bothelp.io\/wp-content\/uploads\/2024\/09\/zapis-ekrana-2025-10-13-v-17.39.50.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/help.bothelp.io\/en\/peredacha-dannyh-iz-formy-registraczii-getcourse\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"How to Work with BotHelp Service: Setting Up Your Account for Your Business Goals","item":"https:\/\/help.bothelp.io\/"},{"@type":"ListItem","position":2,"name":"Transmitting data from the registration form"}]},{"@type":"WebSite","@id":"https:\/\/help.bothelp.io\/en\/#website","url":"https:\/\/help.bothelp.io\/en\/","name":"\u0411\u0430\u0437\u0430 \u0437\u043d\u0430\u043d\u0438\u0439 BotHelp","description":"\u0417\u0434\u0435\u0441\u044c \u0432\u044b \u043d\u0430\u0439\u0434\u0435\u0442\u0435 \u043e\u0442\u0432\u0435\u0442\u044b \u043d\u0430 \u0432\u0441\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/help.bothelp.io\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/help.bothelp.io\/#\/schema\/person\/3725f2e711da03f7380efe93da1a53ca","name":"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fc2c651ad25d8a5ed31aeb69271b32a21caab387207adf0043a317f97bedafbd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fc2c651ad25d8a5ed31aeb69271b32a21caab387207adf0043a317f97bedafbd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fc2c651ad25d8a5ed31aeb69271b32a21caab387207adf0043a317f97bedafbd?s=96&d=mm&r=g","caption":"\u0422\u0430\u0442\u044c\u044f\u043d\u0430 \u041a\u0430\u0440\u043f\u0438\u043a\u043e\u0432\u0430"},"url":"https:\/\/help.bothelp.io\/en\/author\/t-karpikova\/"}]}},"_links":{"self":[{"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/posts\/407","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/comments?post=407"}],"version-history":[{"count":34,"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/posts\/407\/revisions"}],"predecessor-version":[{"id":7983,"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/posts\/407\/revisions\/7983"}],"wp:attachment":[{"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/media?parent=407"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/categories?post=407"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/help.bothelp.io\/en\/wp-json\/wp\/v2\/tags?post=407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}