{"id":169105,"date":"2019-04-03T08:43:23","date_gmt":"2019-04-03T08:43:23","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=169105"},"modified":"2024-08-13T06:47:26","modified_gmt":"2024-08-13T06:47:26","slug":"custom-customer-address-attribute-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/","title":{"rendered":"Custom customer address attribute in Magento 2"},"content":{"rendered":"\n<p><a href=\"https:\/\/webkul.com\/blog\/magento-tutorial\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2<\/a> provides some default attributes to store the customer address information. <br>But, sometimes, when we develop our custom modules, we may need to add extra details to the customer&#8217;s address. <\/p>\n\n\n\n<p>In this scenario, we can create a <a href=\"https:\/\/experienceleague.adobe.com\/en\/docs\/commerce-admin\/customers\/customer-accounts\/attributes\/address-attributes\" target=\"_blank\" rel=\"noreferrer noopener\">custom address attribute<\/a> to store the additional or extra information of the address. <br>So, in this blog, we will learn how to create a custom customer address attribute in Magento 2.<\/p>\n\n\n\n<p>Firstly, create the file InstallData.php inside the app\/code\/Vendor\/Module\/Setup\/ directory. And write the code to create a custom address attribute <em>&#8216;custom_address_attribute&#8217;<\/em>.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\/**\n * Webkul Software.\n *\n * @category  Vendor\n * @package   Vendor_Module\n * @author    Vendor\n * @copyright Webkul Software Private Limited (https:\/\/webkul.com)\n * @license   https:\/\/store.webkul.com\/license.html\n *\/\nnamespace Vendor\\Module\\Setup;\n\nuse Magento\\Eav\\Model\\Config;\nuse Magento\\Eav\\Setup\\EavSetupFactory;\nuse Magento\\Framework\\Setup\\InstallDataInterface;\nuse Magento\\Framework\\Setup\\ModuleContextInterface;\nuse Magento\\Framework\\Setup\\ModuleDataSetupInterface;\nuse Magento\\Eav\\Model\\Entity\\Attribute\\SetFactory as AttributeSetFactory;\n\nclass InstallData implements InstallDataInterface\n{\n    \/**\n     * @var Config\n     *\/\n    private $eavConfig;\n\n     \/**\n     * @var EavSetupFactory\n     *\/\n    private $_eavSetupFactory;\n\n    \/**\n     * @var AttributeSetFactory\n     *\/\n    private $attributeSetFactory;\n\n    \/**\n     * @param Config $eavConfig\n     * @param EavSetupFactory $eavSetupFactory\n     * @param AttributeSetFactory $attributeSetFactory\n     *\/\n    public function __construct(\n        Config $eavConfig,\n        EavSetupFactory $eavSetupFactory,\n        AttributeSetFactory $attributeSetFactory\n    ) {\n        $this-&gt;eavConfig            = $eavConfig;\n        $this-&gt;_eavSetupFactory     = $eavSetupFactory;\n        $this-&gt;attributeSetFactory  = $attributeSetFactory;\n    }\n\n    public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)\n    {\n        $setup-&gt;startSetup();\n\n        $eavSetup = $this-&gt;_eavSetupFactory-&gt;create(&#091;&#039;setup&#039; =&gt; $setup]);\n\n        $eavSetup-&gt;addAttribute(&#039;customer_address&#039;, &#039;custom_address_attribute&#039;, &#091;\n            &#039;type&#039; =&gt; &#039;varchar&#039;,\n            &#039;input&#039; =&gt; &#039;text&#039;,\n            &#039;label&#039; =&gt; &#039;Custom Address Attribute&#039;,\n            &#039;visible&#039; =&gt; true,\n            &#039;required&#039; =&gt; false,\n            &#039;user_defined&#039; =&gt; true,\n            &#039;system&#039;=&gt; false,\n            &#039;group&#039;=&gt; &#039;General&#039;,\n            &#039;global&#039; =&gt; true,\n            &#039;visible_on_front&#039; =&gt; true,\n        ]);\n       \n        $customAttribute = $this-&gt;eavConfig-&gt;getAttribute(&#039;customer_address&#039;, &#039;custom_address_attribute&#039;);\n\n\t\t$customAttribute-&gt;setData(\n\t\t\t&#039;used_in_forms&#039;,\n\t\t\t&#091;&#039;adminhtml_customer_address&#039;,&#039;customer_address_edit&#039;,&#039;customer_register_address&#039;], \/\/list of forms where you want to display the custom attribute\n\t\t);\n        $customAttribute-&gt;save();\n        \n        $setup-&gt;endSetup();\n    }\n}<\/pre>\n\n\n\n<p>InstallData conforms to InstallDataInterface, which requires the implementation of the install method that accepts two parameters of type ModuleDataSetupInterface and ModuleContextInterface.<\/p>\n\n\n\n<p>Using the addAttribute method on the instance of Magento\\Eav\\Setup\\EavSetupFactory, we are instructing Magento to add the attribute &#8216;custom_address_attribute&#8217;.<\/p>\n\n\n\n<p>Then, we will execute the setup:upgrade command from CLI. <br>After the upgrade command execution, a custom address attribute will be created and now you can see this attribute&#8217;s field in the customer edit form at the Magento admin end. <br><br>Refer to the below image to see the result.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"1293\" height=\"620\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png\" alt=\"customer address attribute in Magento 2\" class=\"wp-image-169112\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png 1293w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute-250x120.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute-300x144.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute-768x368.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute-1200x575.png 1200w\" sizes=\"(max-width: 1293px) 100vw, 1293px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Hope, this will be helpful. Thanks \ud83d\ude42<br><br><strong>Next Blog: <\/strong><a href=\"https:\/\/webkul.com\/blog\/inspecting-developer-tools-in-ipad-device\/\" target=\"_blank\" rel=\"noreferrer noopener\">Inspecting developer tools in iPad Device<\/a><\/p>\n\n\n\n<p>You can check out more blogs related to custom attribute creation in Magento 2.<br>Refer to the below links:<\/p>\n\n\n\n<p><a href=\"https:\/\/webkul.com\/blog\/how-to-create-customer-custom-attribute-in-magento-2-0\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Create Customer Custom Attribute in Magento 2<\/a><br><a href=\"https:\/\/webkul.com\/blog\/magento2-how-to-create-product-custom-attribute-from-installer-in-custom-module\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento2- How to create product custom attribute from installer in custom module<\/a><br><a href=\"https:\/\/webkul.com\/blog\/add-custom-product-attributes-in-magento-2\/\" target=\"_blank\" rel=\"noreferrer noopener\">Add custom product attributes for different product types in Magento2<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Magento 2 provides some default attributes to store the customer address information. But, sometimes, when we develop our custom modules, we may need to add extra details to the customer&#8217;s address. In this scenario, we can create a custom address attribute to store the additional or extra information of the address. So, in this blog, <a href=\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":249,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[1230,8334],"class_list":["post-169105","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-custom-attribute","tag-customer-address-attribute"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Custom customer address attribute in Magento 2 - Webkul Blog<\/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:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Custom customer address attribute in Magento 2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Magento 2 provides some default attributes to store the customer address information. But, sometimes, when we develop our custom modules, we may need to add extra details to the customer&#8217;s address. In this scenario, we can create a custom address attribute to store the additional or extra information of the address. So, in this blog, [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-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=\"2019-04-03T08:43:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-13T06:47:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png\" \/>\n<meta name=\"author\" content=\"Khushboo Sahu\" \/>\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=\"Khushboo Sahu\" \/>\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\/custom-customer-address-attribute-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/\"},\"author\":{\"name\":\"Khushboo Sahu\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca\"},\"headline\":\"Custom customer address attribute in Magento 2\",\"datePublished\":\"2019-04-03T08:43:23+00:00\",\"dateModified\":\"2024-08-13T06:47:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/\"},\"wordCount\":256,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png\",\"keywords\":[\"custom attribute\",\"customer address attribute\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/\",\"name\":\"Custom customer address attribute in Magento 2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png\",\"datePublished\":\"2019-04-03T08:43:23+00:00\",\"dateModified\":\"2024-08-13T06:47:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png\",\"width\":1293,\"height\":620,\"caption\":\"custom_address_attribute\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Custom customer address attribute 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\/f94b8f53397bf85810761d76c98fadca\",\"name\":\"Khushboo Sahu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Khushboo Sahu\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/khushboo-sahu062\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Custom customer address attribute in Magento 2 - Webkul Blog","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\/custom-customer-address-attribute-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Custom customer address attribute in Magento 2 - Webkul Blog","og_description":"Magento 2 provides some default attributes to store the customer address information. But, sometimes, when we develop our custom modules, we may need to add extra details to the customer&#8217;s address. In this scenario, we can create a custom address attribute to store the additional or extra information of the address. So, in this blog, [...]","og_url":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2019-04-03T08:43:23+00:00","article_modified_time":"2024-08-13T06:47:26+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png","type":"","width":"","height":""}],"author":"Khushboo Sahu","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Khushboo Sahu","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/"},"author":{"name":"Khushboo Sahu","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/f94b8f53397bf85810761d76c98fadca"},"headline":"Custom customer address attribute in Magento 2","datePublished":"2019-04-03T08:43:23+00:00","dateModified":"2024-08-13T06:47:26+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/"},"wordCount":256,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png","keywords":["custom attribute","customer address attribute"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/","url":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/","name":"Custom customer address attribute in Magento 2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png","datePublished":"2019-04-03T08:43:23+00:00","dateModified":"2024-08-13T06:47:26+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2019\/04\/custom_address_attribute.png","width":1293,"height":620,"caption":"custom_address_attribute"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/custom-customer-address-attribute-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Custom customer address attribute 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\/f94b8f53397bf85810761d76c98fadca","name":"Khushboo Sahu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cabac965df656d114e6bf340df07518c990eda03bb09265dbd5c17f1097adaae?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Khushboo Sahu"},"url":"https:\/\/webkul.com\/blog\/author\/khushboo-sahu062\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/169105","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\/249"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=169105"}],"version-history":[{"count":19,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/169105\/revisions"}],"predecessor-version":[{"id":448177,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/169105\/revisions\/448177"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=169105"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=169105"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=169105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}