{"id":1851,"date":"2024-05-27T16:31:18","date_gmt":"2024-05-27T11:01:18","guid":{"rendered":"https:\/\/myfreeonlinetools.com\/blog\/?p=1851"},"modified":"2024-05-28T11:09:27","modified_gmt":"2024-05-28T05:39:27","slug":"gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm","status":"publish","type":"post","link":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/","title":{"rendered":"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>\n\/*gravity form data send *\/\n\n\nadd_action( 'gform_after_submission', 'access_entry_via_field', 10, 2 );\n  \nfunction access_entry_via_field( $entry, $form ) {\n    \n    \/\/ store data in txt file\n          \n    $leadFormEntryInput = json_encode($entry); \n    \n    \/\/parameter zoho\n    \n    $formID = filter_var($entry&#91;'form_id'], FILTER_SANITIZE_STRING);\n    \n    if($formID === '6'){\n        $name = filter_var($entry&#91;'3'], FILTER_SANITIZE_STRING);\n        $phone = filter_var($entry&#91;'9'], FILTER_SANITIZE_STRING);\n        $email = filter_var($entry&#91;'5'], FILTER_SANITIZE_STRING);\n        $message = filter_var($entry&#91;'7'], FILTER_SANITIZE_STRING);\n    }else {    \n        if(!isset($entry&#91;1]) ){\n        $name = filter_var($entry&#91;'1.3'], FILTER_SANITIZE_STRING);\n       }else{\n            $name = filter_var($entry&#91;'1'], FILTER_SANITIZE_STRING);\n        }\n\n        $phone = filter_var($entry&#91;'3'], FILTER_SANITIZE_STRING);\n        $email = filter_var($entry&#91;'4'], FILTER_SANITIZE_STRING);\n        $message = filter_var($entry&#91;'5'], FILTER_SANITIZE_STRING);\n    }\n     \n    $ip = filter_var($entry&#91;'ip'], FILTER_SANITIZE_STRING);\n    $sourceURL = filter_var($entry&#91;'source_url'], FILTER_SANITIZE_STRING);\n    $dateCreate = filter_var($entry&#91;'date_created'], FILTER_SANITIZE_STRING);\n    \n    \n    \/\/ push zoho code\n    \n    $client_id = '1000.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';\n    $client_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';\n    $refresh_token = '1000.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';\n    $url = \"https:\/\/accounts.zoho.in\/oauth\/v2\/token?refresh_token=$refresh_token&amp;client_id=$client_id&amp;client_secret=$client_secret&amp;grant_type=refresh_token\";\n\n    \n    $ch = curl_init();\n    curl_setopt($ch, CURLOPT_URL, $url);\n    curl_setopt($ch, CURLOPT_POST, 1);\n    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n    $result = curl_exec($ch);\n    curl_close($ch);\n    $output = json_decode($result, true);\n    $access_token = $output&#91;'access_token'];\n    $url = \"https:\/\/www.zohoapis.in\/crm\/v2\/Leads\/upsert\";\n    $header = array(\"Authorization: Zoho-oauthtoken $access_token\");\n\n\n    \t$json = array(\n\t\t\t\t\"data\" =&gt; array(\n\t\t\t\t\tarray(\n\t\t\t\t\t\t\"Company\" =&gt; 'Company Name',\n\t\t\t\t\t\t\"Last_Name\" =&gt; $name,\n\t\t\t\t\t\t\"Email\" =&gt; $email,\n\t\t\t\t\t\t\"Source\" =&gt; 'NA',\n\t\t\t\t\t\t\"Medium\" =&gt; 'NA',\n\t\t\t\t\t\t\"Campaign\" =&gt; 'NA',\n\t\t\t\t\t\t\"Landing_Page\" =&gt; $sourceURL,\n\t\t\t\t\t\t\"Lead_Source\" =&gt; 'Web',\n\t\t\t\t\t\t\"Mode_of_Lead\" =&gt; 'Web-form',\n\t\t\t\t\t\t\"IP\" =&gt; $ip,\n\t\t\t\t\t\t\"Google_Client_ID\" =&gt; 'NA',\n\t\t\t\t\t\t\"Phone\" =&gt; $phone\n\t\t\t\t\t)\n\t\t\t\t)\n\t\t\t);\n            \n    \n    $json_data = json_encode($json);\n\n    $ch = curl_init();\n    curl_setopt($ch, CURLOPT_URL, $url);\n    curl_setopt($ch, CURLOPT_HTTPHEADER, $header);\n    curl_setopt($ch, CURLOPT_POST, 1);\n    curl_setopt($ch, CURLOPT_POSTFIELDS, $json_data);\n    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n    $result = curl_exec($ch);\n    curl_close($ch);\n   \n    return $result;\t   \n}\n\n\n\/* gravity form data send *\/<\/code><\/pre>\n\n\n\n<p>Gravity form predefined function gform_after_submission is executed at the end of form submission process when user submit the form.<br>Gravity form gform_after_submission function contact entry object parameter contains all submitted values by user in form.<\/p>\n\n\n\n<p>Placement of Gravity form function<\/p>\n\n\n\n<p>Above function place in functions.php file of current active theme.<\/p>\n\n\n\n<p>Parameters of gform_after_submission<\/p>\n\n\n\n<p>$entry and $form<\/p>\n\n\n\n<p>Entry Object : Entry object contains all properties of a particular entry. It is formatted as an associative array with field Ids being the key to that field\u2019s data.<\/p>\n\n\n\n<p class=\"has-larger-font-size\"> <strong>$entry JSON Code Example <\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n\"3\": \"myfreeonlinetools\",\r\n\"5\": \"mail@myfreeonlinetools.com\",\r\n\"7\": \"myfreeonlinetools\",\r\n\"9\": \"9879879876\",\r\n\"10\": \"+91\",\r\n\"id\": \"215\",\r\n\"status\": \"active\",\r\n\"form_id\": \"6\",\r\n\"ip\": \"165.225.124.239\",\r\n\"source_url\": \"https:\/\/myfreeonlinetools.com\/\",\r\n\"currency\": \"USD\",\r\n\"post_id\": null,\r\n\"date_created\": \"2024-04-23 09:10:15\",\r\n\"date_updated\": \"2024-04-23 09:10:15\",\r\n\"is_starred\": 0,\r\n\"is_read\": 0,\r\n\"user_agent\": \"Mozilla\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\/537.36 (KHTML, like Gecko) Chrome\\\/124.0.0.0 Safari\\\/537.36\",\r\n\"payment_status\": null,\r\n\"payment_date\": null,\r\n\"payment_amount\": null,\r\n\"payment_method\": \"\",\r\n\"transaction_id\": null,\r\n\"is_fulfilled\": null,\r\n\"created_by\": \"19\",\r\n\"transaction_type\": null\r\n}<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-gravity-forms-documentation wp-block-embed-gravity-forms-documentation\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"RSv7gN0SM2\"><a href=\"https:\/\/docs.gravityforms.com\/entry-object\/\">Entry Object<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Entry Object&#8221; &#8212; Gravity Forms Documentation\" src=\"https:\/\/docs.gravityforms.com\/entry-object\/embed\/#?secret=mq7a1j737v#?secret=RSv7gN0SM2\" data-secret=\"RSv7gN0SM2\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe> \n<\/div><\/figure>\n\n\n\n<p>Form Object : The form object, available to most action hooks and filters, is an associative array containing the form settings, fields, notifications, confirmations, and other properties.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Gravity form predefined function gform_after_submission is executed at the end of form submission process when user submit the form.Gravity form gform_after_submission function contact entry object parameter contains all submitted values [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[53,29,24,26],"tags":[],"class_list":["post-1851","post","type-post","status-publish","format-standard","hentry","category-gravity-forms","category-php","category-wordpress","category-wordpress-2"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM - MyFreeOnlineTools<\/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:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM - MyFreeOnlineTools\" \/>\n<meta property=\"og:description\" content=\"Gravity form predefined function gform_after_submission is executed at the end of form submission process when user submit the form.Gravity form gform_after_submission function contact entry object parameter contains all submitted values [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/\" \/>\n<meta property=\"og:site_name\" content=\"MyFreeOnlineTools\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-27T11:01:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-28T05:39:27+00:00\" \/>\n<meta name=\"author\" content=\"myfreeonlinetools\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"myfreeonlinetools\" \/>\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:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/\"},\"author\":{\"name\":\"myfreeonlinetools\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\"},\"headline\":\"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM\",\"datePublished\":\"2024-05-27T11:01:18+00:00\",\"dateModified\":\"2024-05-28T05:39:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/\"},\"wordCount\":141,\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"articleSection\":[\"Gravity Forms\",\"PHP\",\"Wordpress\",\"WordPress\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/\",\"name\":\"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM - MyFreeOnlineTools\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\"},\"datePublished\":\"2024-05-27T11:01:18+00:00\",\"dateModified\":\"2024-05-28T05:39:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/myfreeonlinetools.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"name\":\"MyFreeOnlineTools\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\",\"name\":\"MyFreeOnlineTools\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"contentUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"width\":387,\"height\":79,\"caption\":\"MyFreeOnlineTools\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\",\"name\":\"myfreeonlinetools\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"caption\":\"myfreeonlinetools\"},\"description\":\"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.\",\"sameAs\":[\"https:\/\/myfreeonlinetools.com\/\",\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\",\"https:\/\/www.youtube.com\/learnschoolonline\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM - MyFreeOnlineTools","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:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/","og_locale":"en_US","og_type":"article","og_title":"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM - MyFreeOnlineTools","og_description":"Gravity form predefined function gform_after_submission is executed at the end of form submission process when user submit the form.Gravity form gform_after_submission function contact entry object parameter contains all submitted values [&hellip;]","og_url":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/","og_site_name":"MyFreeOnlineTools","article_author":"https:\/\/www.facebook.com\/LearnSchoolOnline\/","article_published_time":"2024-05-27T11:01:18+00:00","article_modified_time":"2024-05-28T05:39:27+00:00","author":"myfreeonlinetools","twitter_card":"summary_large_image","twitter_misc":{"Written by":"myfreeonlinetools","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/#article","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/"},"author":{"name":"myfreeonlinetools","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c"},"headline":"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM","datePublished":"2024-05-27T11:01:18+00:00","dateModified":"2024-05-28T05:39:27+00:00","mainEntityOfPage":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/"},"wordCount":141,"publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"articleSection":["Gravity Forms","PHP","Wordpress","WordPress"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/","url":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/","name":"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM - MyFreeOnlineTools","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#website"},"datePublished":"2024-05-27T11:01:18+00:00","dateModified":"2024-05-28T05:39:27+00:00","breadcrumb":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/myfreeonlinetools.com\/blog\/gravity-form-submission-with-zoho-lead-integration-or-form-data-push-to-zoho-crm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/myfreeonlinetools.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Gravity Form Submission with Zoho Lead Integration Or Form Data push to Zoho CRM"}]},{"@type":"WebSite","@id":"https:\/\/myfreeonlinetools.com\/blog\/#website","url":"https:\/\/myfreeonlinetools.com\/blog\/","name":"MyFreeOnlineTools","description":"","publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization","name":"MyFreeOnlineTools","url":"https:\/\/myfreeonlinetools.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","contentUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","width":387,"height":79,"caption":"MyFreeOnlineTools"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c","name":"myfreeonlinetools","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","caption":"myfreeonlinetools"},"description":"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.","sameAs":["https:\/\/myfreeonlinetools.com\/","https:\/\/www.facebook.com\/LearnSchoolOnline\/","https:\/\/www.youtube.com\/learnschoolonline"]}]}},"_links":{"self":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/1851","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/comments?post=1851"}],"version-history":[{"count":6,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/1851\/revisions"}],"predecessor-version":[{"id":1868,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/1851\/revisions\/1868"}],"wp:attachment":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/media?parent=1851"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/categories?post=1851"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/tags?post=1851"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}