{"id":343174,"date":"2022-07-13T06:48:36","date_gmt":"2022-07-13T06:48:36","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=343174"},"modified":"2022-07-13T06:48:46","modified_gmt":"2022-07-13T06:48:46","slug":"magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/","title":{"rendered":"Magento 2 Update Assigned Source Inventory from Admin end and programmatically"},"content":{"rendered":"\n<p>In this article, You will learn about how to update Assigned Inventory sources to bulk products and also you&#8217;ll learn how to update assigned inventory sources with the source code. And which files we have to use to assign the inventory sources programmatically.<\/p>\n\n\n\n<p>Please follow these steps one by one:<\/p>\n\n\n\n<p>Step-1: On the Admin Panel, go to the Catalog menu then select the products menu. (catalog &gt; products).See the below Screenshot.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"635\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png\" alt=\"Selection_001\" class=\"wp-image-343175\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-300x159.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-250x132.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-768x406.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001.png 1263w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Step-2: Click on edit button to update the source. You will get the all the assigned source on the product edit page. see the below screenshot.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1199\" height=\"650\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_002.png\" alt=\"Selection_002\" class=\"wp-image-343176\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_002.png 1199w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_002-300x163.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_002-250x136.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_002-768x416.png 768w\" sizes=\"(max-width: 1199px) 100vw, 1199px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Now suppose we have to update the source with the name test then select the source status from the drop-down and mark the qty as per your requirement. Then click on the Save button.<\/p>\n\n\n\n<p>After that when you go to the product grid where you&#8217;ll find the updated sources. See the below screenshot.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1184\" height=\"628\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_003.png\" alt=\"Selection_003\" class=\"wp-image-343177\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_003.png 1184w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_003-300x159.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_003-250x133.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_003-768x407.png 768w\" sizes=\"(max-width: 1184px) 100vw, 1184px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>Now, the question occurs is that, how to update the assigned source programmatically ?<\/p>\n\n\n\n<p>So, for this you have to find out the files named as SourceItemInterface and SourceItemSaveInterface which you will find on the path &#8220;vendor\\module-inventory-api\\Magento\\InventoryApi\\Api\\Data\\SourceItemInterface&#8221; and &#8220;vendor\\module-inventory-api\\Magento\\InventoryApi\\Api\\SourceItemsSaveInterface&#8221;.<br><br>To update the sources use below code:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$objectManager = \\Magento\\Framework\\App\\ObjectManager::getInstance();\n$sourceItem2 = $objectManager-&gt;create(&#039;\\Magento\\InventoryApi\\Api\\Data\\SourceItemInterface&#039;);\n$sourceItem2-&gt;setSku($productSku);\n$sourceItem2-&gt;setSourceCode($sourceCode);\n$sourceItem2-&gt;setQuantity($productQty);\n$sourceItem2-&gt;setStatus($this-&gt;status);\n$sourceItemSave = $objectManager-&gt;get(&#039;\\Magento\\InventoryApi\\Api\\SourceItemsSaveInterface&#039;);\n$sourceItemSave-&gt;execute(&#091;$sourceItem2]);<\/pre>\n\n\n\n<p>Use this above code from where you want to update the soucres.<\/p>\n\n\n\n<p>For this you have to provide a four params like:<\/p>\n\n\n\n<p>1: productsku<\/p>\n\n\n\n<p>2: sourcecode<\/p>\n\n\n\n<p>3:productQty<\/p>\n\n\n\n<p>4:status<\/p>\n\n\n\n<p>Hence the sources will get updated.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, You will learn about how to update Assigned Inventory sources to bulk products and also you&#8217;ll learn how to update assigned inventory sources with the source code. And which files we have to use to assign the inventory sources programmatically. Please follow these steps one by one: Step-1: On the Admin Panel, <a href=\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":439,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-343174","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Magento 2 Update Assigned Source Inventory from Admin end and programmatically - 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\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Magento 2 Update Assigned Source Inventory from Admin end and programmatically - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In this article, You will learn about how to update Assigned Inventory sources to bulk products and also you&#8217;ll learn how to update assigned inventory sources with the source code. And which files we have to use to assign the inventory sources programmatically. Please follow these steps one by one: Step-1: On the Admin Panel, [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\" \/>\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=\"2022-07-13T06:48:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-13T06:48:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png\" \/>\n<meta name=\"author\" content=\"Ajay Singh\" \/>\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=\"Ajay Singh\" \/>\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\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\"},\"author\":{\"name\":\"Ajay Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/a34da891d20d341126f02e0f2716b63f\"},\"headline\":\"Magento 2 Update Assigned Source Inventory from Admin end and programmatically\",\"datePublished\":\"2022-07-13T06:48:36+00:00\",\"dateModified\":\"2022-07-13T06:48:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\"},\"wordCount\":249,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\",\"url\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\",\"name\":\"Magento 2 Update Assigned Source Inventory from Admin end and programmatically - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png\",\"datePublished\":\"2022-07-13T06:48:36+00:00\",\"dateModified\":\"2022-07-13T06:48:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001.png\",\"width\":1263,\"height\":668,\"caption\":\"Selection_001\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magento 2 Update Assigned Source Inventory from Admin end and programmatically\"}]},{\"@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\/a34da891d20d341126f02e0f2716b63f\",\"name\":\"Ajay Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eb0e5d7a768feaf55e3b627fb8a98b0d994cf89381c4ca02db24fefe188aec5d?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\/eb0e5d7a768feaf55e3b627fb8a98b0d994cf89381c4ca02db24fefe188aec5d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ajay Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/ajaysingh-tomar648\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Magento 2 Update Assigned Source Inventory from Admin end and programmatically - 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\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/","og_locale":"en_US","og_type":"article","og_title":"Magento 2 Update Assigned Source Inventory from Admin end and programmatically - Webkul Blog","og_description":"In this article, You will learn about how to update Assigned Inventory sources to bulk products and also you&#8217;ll learn how to update assigned inventory sources with the source code. And which files we have to use to assign the inventory sources programmatically. Please follow these steps one by one: Step-1: On the Admin Panel, [...]","og_url":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2022-07-13T06:48:36+00:00","article_modified_time":"2022-07-13T06:48:46+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png","type":"","width":"","height":""}],"author":"Ajay Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ajay Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/"},"author":{"name":"Ajay Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/a34da891d20d341126f02e0f2716b63f"},"headline":"Magento 2 Update Assigned Source Inventory from Admin end and programmatically","datePublished":"2022-07-13T06:48:36+00:00","dateModified":"2022-07-13T06:48:46+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/"},"wordCount":249,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/","url":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/","name":"Magento 2 Update Assigned Source Inventory from Admin end and programmatically - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001-1200x635.png","datePublished":"2022-07-13T06:48:36+00:00","dateModified":"2022-07-13T06:48:46+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2022\/07\/Selection_001.png","width":1263,"height":668,"caption":"Selection_001"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/magento-2-update-assigned-source-inventory-from-admin-end-and-programmatically\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magento 2 Update Assigned Source Inventory from Admin end and programmatically"}]},{"@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\/a34da891d20d341126f02e0f2716b63f","name":"Ajay Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/eb0e5d7a768feaf55e3b627fb8a98b0d994cf89381c4ca02db24fefe188aec5d?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\/eb0e5d7a768feaf55e3b627fb8a98b0d994cf89381c4ca02db24fefe188aec5d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ajay Singh"},"url":"https:\/\/webkul.com\/blog\/author\/ajaysingh-tomar648\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/343174","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\/439"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=343174"}],"version-history":[{"count":3,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/343174\/revisions"}],"predecessor-version":[{"id":343992,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/343174\/revisions\/343992"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=343174"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=343174"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=343174"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}