{"id":370138,"date":"2023-02-24T03:45:55","date_gmt":"2023-02-24T03:45:55","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=370138"},"modified":"2023-02-24T03:49:57","modified_gmt":"2023-02-24T03:49:57","slug":"how-to-pass-custom-data-in-checkout-in-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/","title":{"rendered":"How to Pass Custom Data in Checkout in Magento 2"},"content":{"rendered":"\n<p>In this blog, we will learn how to pass custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display or add data at the time of the checkout process. So, we need to use\u00a0<strong>Magento\\Checkout\\Model\\CompositeConfigProvider<\/strong>\u00a0class to pass custom variables on\u00a0the <a href=\"https:\/\/devdocs.magento.com\/guides\/v2.4\/howdoi\/checkout\/checkout_overview.html\">checkout<\/a>\u00a0page.<\/p>\n\n\n\n<p>Let\u2019s start step by step and learn how we can do that :<\/p>\n\n\n\n<p><strong>Step 1<\/strong>: We assume, you have created a simple module, then you have to add the below code in\u00a0the <em><strong>app\/code\/Webkul\/CustomCheckoutData\/etc\/frontend\/di.xml<\/strong><\/em>\u00a0file :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?xml version=&quot;1.0&quot;?&gt;\n&lt;config xmlns:xsi=&quot;http:\/\/www.w3.org\/2001\/XMLSchema-instance&quot; xsi:noNamespaceSchemaLocation=&quot;urn:magento:framework:ObjectManager\/etc\/config.xsd&quot;&gt;\n    &lt;type name=&quot;Magento\\Checkout\\Model\\CompositeConfigProvider&quot;&gt;\n        &lt;arguments&gt;\n            &lt;argument name=&quot;configProviders&quot; xsi:type=&quot;array&quot;&gt;\n                &lt;item name=&quot;set_custom_data&quot; xsi:type=&quot;object&quot;&gt;Webkul\\CustomCheckoutData\\Model\\CheckoutConfigProvider&lt;\/item&gt;\n            &lt;\/argument&gt;\n        &lt;\/arguments&gt;\n    &lt;\/type&gt;\n&lt;\/config&gt;<\/pre>\n\n\n\n<p><strong>Step 2: <\/strong>After that, You need to create\u00a0an <em><strong>app\/code\/Webkul\/CustomCheckoutData\/Model\/CustomConfigProvider.php\u00a0<\/strong><\/em>file and paste the below code to add a custom value :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\nnamespace Webkul\\CustomCheckoutData\\Model;\n\nuse \\Magento\\Checkout\\Model\\ConfigProviderInterface\n\nclass CheckoutConfigProvider implements ConfigProviderInterface\n{\n    public function getConfig()\n    {\n\t\t$configArray = &#091;];\n\t\t$configArray&#091;&#039;custom_data&#039;] = &#039;Webkul Test Value&#039;;\n\t\treturn $configArray;\n    }\n}<\/pre>\n\n\n\n<p>Here, you need to implement\u00a0the <strong>Magento\\Checkout\\Model\\ConfigProviderInterface<\/strong>\u00a0interface in a custom file to pass a custom value in the checkout config.<\/p>\n\n\n\n<p>Now, you need to flush the cache and then, you can access this value in the JS file on the checkout page using the below way :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">window.checkoutConfig.custom_data<\/pre>\n\n\n\n<p><strong>Output<\/strong>:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"600\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png\" alt=\"Screenshot-from-2023-02-24-09-09-31-1\" class=\"wp-image-370140\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-300x150.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-250x125.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-768x384.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1.png 1217w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>We hope this tutorial is useful for you. <\/p>\n\n\n\n<p>You may like our other tutorials :<\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/create-a-custom-router-in-magento2\/\">Custom router in Magento2<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/custom-checkout-step-in-magento2\/\">Custom Checkout step in Magento 2<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will learn how to pass custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display or add data at the time of the checkout process. So, we need to use\u00a0Magento\\Checkout\\Model\\CompositeConfigProvider\u00a0class to pass custom variables on\u00a0the checkout\u00a0page. Let\u2019s start step by <a href=\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":378,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[13641,13640,13639],"class_list":["post-370138","post","type-post","status-publish","format-standard","hentry","category-magento-2","tag-custom-data-in-checkout-magento2","tag-magento-2-checkout-custom-data","tag-pass-custom-data-in-checkout"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Pass Custom Data in Checkout in Magento 2 - Webkul Blog<\/title>\n<meta name=\"description\" content=\"we will learn how to set custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Pass Custom Data in Checkout in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"we will learn how to set custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-24T03:45:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-24T03:49:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png\" \/>\n<meta name=\"author\" content=\"Ashish Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ashish Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\"},\"author\":{\"name\":\"Ashish Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/57d23646a58691882a6bd0baf5dadc21\"},\"headline\":\"How to Pass Custom Data in Checkout in Magento 2\",\"datePublished\":\"2023-02-24T03:45:55+00:00\",\"dateModified\":\"2023-02-24T03:49:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\"},\"wordCount\":207,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png\",\"keywords\":[\"custom data in checkout magento2\",\"magento 2 checkout custom data\",\"pass custom data in checkout\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\",\"name\":\"How to Pass Custom Data in Checkout in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png\",\"datePublished\":\"2023-02-24T03:45:55+00:00\",\"dateModified\":\"2023-02-24T03:49:57+00:00\",\"description\":\"we will learn how to set custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1.png\",\"width\":1217,\"height\":609,\"caption\":\"Screenshot-from-2023-02-24-09-09-31-1\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Pass Custom Data in Checkout in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/57d23646a58691882a6bd0baf5dadc21\",\"name\":\"Ashish Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3ade0803c37d8f9fe88d8255d0db5361c67b2bc36a6bafa1b3e8804285115c9b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3ade0803c37d8f9fe88d8255d0db5361c67b2bc36a6bafa1b3e8804285115c9b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ashish Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/ashishkumar-mg770\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Pass Custom Data in Checkout in Magento 2 - Webkul Blog","description":"we will learn how to set custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display.","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:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"How to Pass Custom Data in Checkout in Magento 2 - Webkul Blog","og_description":"we will learn how to set custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display.","og_url":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-02-24T03:45:55+00:00","article_modified_time":"2023-02-24T03:49:57+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png","type":"","width":"","height":""}],"author":"Ashish Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ashish Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/"},"author":{"name":"Ashish Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/57d23646a58691882a6bd0baf5dadc21"},"headline":"How to Pass Custom Data in Checkout in Magento 2","datePublished":"2023-02-24T03:45:55+00:00","dateModified":"2023-02-24T03:49:57+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/"},"wordCount":207,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png","keywords":["custom data in checkout magento2","magento 2 checkout custom data","pass custom data in checkout"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/","url":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/","name":"How to Pass Custom Data in Checkout in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1-1200x600.png","datePublished":"2023-02-24T03:45:55+00:00","dateModified":"2023-02-24T03:49:57+00:00","description":"we will learn how to set custom data in checkout in Magento 2. On the checkout page, sometimes we need to pass some custom data to display.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/02\/Screenshot-from-2023-02-24-09-09-31-1.png","width":1217,"height":609,"caption":"Screenshot-from-2023-02-24-09-09-31-1"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-pass-custom-data-in-checkout-in-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Pass Custom Data in Checkout in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/57d23646a58691882a6bd0baf5dadc21","name":"Ashish Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3ade0803c37d8f9fe88d8255d0db5361c67b2bc36a6bafa1b3e8804285115c9b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3ade0803c37d8f9fe88d8255d0db5361c67b2bc36a6bafa1b3e8804285115c9b?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ashish Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/ashishkumar-mg770\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/370138","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/378"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=370138"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/370138\/revisions"}],"predecessor-version":[{"id":370145,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/370138\/revisions\/370145"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=370138"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=370138"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=370138"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}