{"id":88176,"date":"2017-07-05T07:49:20","date_gmt":"2017-07-05T07:49:20","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=88176"},"modified":"2019-10-01T11:38:31","modified_gmt":"2019-10-01T11:38:31","slug":"calling-methods-from-xml-data-in-odoo","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/","title":{"rendered":"Calling Methods from XML data in Odoo"},"content":{"rendered":"<p>In the post, i will briefly tell about how to call methods while module installation using&nbsp; XML<strong> &lt;function \/&gt; <\/strong>tags in Odoo.<\/p>\n<p>Sometime we required to perform some CURD operation automatically just after module installation , in this case&nbsp; we can use the &lt;<strong>function<\/strong>\/&gt; tags and call the method to perform these operations.<\/p>\n<p>&nbsp;<\/p>\n<div id=\"wkid0\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Create DEMO DATA File<\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">\n<p>First of all you need to create a xml file(let&#8217;s say <strong>demo.xml<\/strong>)&nbsp; Like:<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n&lt;odoo&gt;\n    &lt;data noupdate=\"1\"&gt;\n    &lt;\/data&gt;\n&lt;\/odoo&gt;\n\n<\/pre>\n<p>Here <strong>noupdate<\/strong> is set to true for ensuring that on module update&nbsp; this xml will not executed again and again.<\/p>\n<p>It&#8217;s time to include your xml file in <strong>data or demo<\/strong> key of __mainifest__.py.<\/p>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n<div id=\"wkid0\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Calling Method Without parameters<\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">\n<p>Create a method in model&nbsp; Like:<\/p>\n<pre class=\"brush:py\">from odoo import api, fields, models\nclass product(models.Model):\n\t_inherit = \"product.product\"\n\t@api.model\n\tdef oe_method_without_params(self):\n\t\tself.create(dict(name='demo.webkul.com'))<\/pre>\n<p>Now for calling this method &nbsp; , create a <strong>&lt;function\/&gt;<\/strong> tag in demo.xml Like:<\/p>\n<pre class=\"brush:xml\"> &lt;function\n    id=\"function_id\"\n    model=\"model_name\"\n    name=\"method_name\"\/&gt;<\/pre>\n<pre class=\"brush:xml\"> &lt;function\n    id=\"function_without_params\"\n    model=\"product.product\"\n    name=\"oe_method_without_params\"\/&gt;\n<\/pre>\n<p>Now your demo.xml file will look like:<\/p>\n<pre class=\"brush:xml\">&lt;odoo&gt;\n    &lt;data noupdate=\"1\"&gt;\n        &lt;function\n            id=\"function_without_params\"\n            model=\"product.product\"\n            name=\"oe_method_without_params\"\/&gt;\n    &lt;\/data&gt;\n&lt;\/odoo&gt;\n<\/pre>\n<p>Once module is installed this method(<strong><code class=\"xml string\">oe_method_without_params<\/code><\/strong>) will called.<\/p>\n<\/div>\n<\/div>\n<div id=\"wkid0\" class=\"panel panel-primary\">\n<div id=\"wkid0\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Calling Method With&nbsp; parameters<\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">\n<p>Include one more method in you python file:<\/p>\n<pre class=\"brush:py\">@api.model\ndef oe_method_with_params(self,name,sale_ok=True):\n    self.create(dict(name=name,sale_ok=sale_ok))<\/pre>\n<p>You python file will look like:<\/p>\n<pre class=\"brush:py\">from odoo import api, fields, models\nclass product(models.Model):\n\t_inherit = \"product.product\"\n        \n\t@api.model\n\tdef oe_method_without_params(self):\n\t\tself.create(dict(name='demo.webkul.com'))\n       \n\t@api.model\n\tdef oe_method_with_params(self,name,sale_ok=True):\n\t\tself.create(dict(name=name,sale_ok=sale_ok))<\/pre>\n<p>Now for calling this method &nbsp; , create a <strong>&lt;function\/&gt;<\/strong> tag&nbsp;&nbsp; and pass the params in&nbsp; <strong>&lt;value\/&gt; <\/strong>tags Like:<\/p>\n<pre class=\"brush:py\"> &lt;function\n    id=\"function_id\"\n    model=\"model_name\"\n    name=\"method_name\"&gt;\n    &lt;value&gt;param1&lt;\/value&gt;\n    &lt;value&gt;param2&lt;\/value&gt;\n    ....\n&lt;\/function&gt;<\/pre>\n<pre class=\"brush:xml\">&lt;function \n    id=\"function_with_params\"\n    model=\"product.product\"\n    name=\"oe_method_with_params\"&gt;\n        &lt;value&gt;erp.webkul.com&lt;\/value&gt;\n      \t&lt;value&gt;False&lt;\/value&gt;\n&lt;\/function&gt;<\/pre>\n<p>Now your <strong>demo.xml<\/strong> file will look like:<\/p>\n<pre class=\"brush:xml\">&lt;odoo&gt;\n    &lt;data noupdate=\"1\"&gt;\n        &lt;function\n            id=\"function_without_params\"\n            model=\"product.product\"\n            name=\"oe_method_without_params\"\/&gt;\n        &lt;function \n            id=\"function_with_params\"\n            model=\"product.product\"\n            name=\"oe_method_with_params\"&gt;\n                &lt;value&gt;erp.webkul.com&lt;\/value&gt;\n      \t        &lt;value&gt;False&lt;\/value&gt;\n        &lt;\/function&gt;\n    &lt;\/data&gt;\n&lt;\/odoo&gt;<\/pre>\n<p>Once module is installed these method will called.<\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<div id=\"wkid0\" class=\"panel panel-primary\">\n<p>Hope &nbsp;you enjoyed this post, I\u2019d be very grateful if you\u2019d write your opinions, comments and suggestions to keep the page updated and interesting.<\/p>\n<p>You also like our post on <a href=\"http:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\">working with xml data in odoo<\/a>.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In the post, i will briefly tell about how to call methods while module installation using&nbsp; XML &lt;function \/&gt; tags in Odoo. Sometime we required to perform some CURD operation automatically just after module installation , in this case&nbsp; we can use the &lt;function\/&gt; tags and call the method to perform these operations. &nbsp; Create <a href=\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":86,"featured_media":45511,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007],"tags":[5016,5015,5018,5017],"class_list":["post-88176","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-odoo","tag-calling-function-from-xml-odoo","tag-calling-method-from-xml-odoo","tag-calling-method-on-module-install-odoo","tag-function-tag-in-odoo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Calling Methods from XML data in Odoo - 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\/calling-methods-from-xml-data-in-odoo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calling Methods from XML data in Odoo - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"In the post, i will briefly tell about how to call methods while module installation using&nbsp; XML &lt;function \/&gt; tags in Odoo. Sometime we required to perform some CURD operation automatically just after module installation , in this case&nbsp; we can use the &lt;function\/&gt; tags and call the method to perform these operations. &nbsp; Create [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/\" \/>\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=\"2017-07-05T07:49:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-10-01T11:38:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Prakash 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=\"Prakash Kumar\" \/>\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:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/\"},\"author\":{\"name\":\"Prakash Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b\"},\"headline\":\"Calling Methods from XML data in Odoo\",\"datePublished\":\"2017-07-05T07:49:20+00:00\",\"dateModified\":\"2019-10-01T11:38:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/\"},\"wordCount\":266,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"keywords\":[\"calling-function-from-xml-odoo\",\"calling-method-from-xml-odoo\",\"calling-method-on-module-install-odoo\",\"function-tag-in-odoo\"],\"articleSection\":[\"Odoo\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/\",\"url\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/\",\"name\":\"Calling Methods from XML data in Odoo - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"datePublished\":\"2017-07-05T07:49:20+00:00\",\"dateModified\":\"2019-10-01T11:38:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calling Methods from XML data in Odoo\"}]},{\"@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\/8b41d806aa1c7ec81f958437fac62e5b\",\"name\":\"Prakash Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?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\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Prakash Kumar\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/prakash-kumar163\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Calling Methods from XML data in Odoo - 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\/calling-methods-from-xml-data-in-odoo\/","og_locale":"en_US","og_type":"article","og_title":"Calling Methods from XML data in Odoo - Webkul Blog","og_description":"In the post, i will briefly tell about how to call methods while module installation using&nbsp; XML &lt;function \/&gt; tags in Odoo. Sometime we required to perform some CURD operation automatically just after module installation , in this case&nbsp; we can use the &lt;function\/&gt; tags and call the method to perform these operations. &nbsp; Create [...]","og_url":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-07-05T07:49:20+00:00","article_modified_time":"2019-10-01T11:38:31+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","type":"image\/png"}],"author":"Prakash Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Prakash Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/"},"author":{"name":"Prakash Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b"},"headline":"Calling Methods from XML data in Odoo","datePublished":"2017-07-05T07:49:20+00:00","dateModified":"2019-10-01T11:38:31+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/"},"wordCount":266,"commentCount":4,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","keywords":["calling-function-from-xml-odoo","calling-method-from-xml-odoo","calling-method-on-module-install-odoo","function-tag-in-odoo"],"articleSection":["Odoo"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/","url":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/","name":"Calling Methods from XML data in Odoo - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","datePublished":"2017-07-05T07:49:20+00:00","dateModified":"2019-10-01T11:38:31+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/calling-methods-from-xml-data-in-odoo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Calling Methods from XML data in Odoo"}]},{"@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\/8b41d806aa1c7ec81f958437fac62e5b","name":"Prakash Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?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\/0423ba8e78c94fb466768b44982d402aec0a1bb0ea274e7907672f740c41d776?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Prakash Kumar"},"url":"https:\/\/webkul.com\/blog\/author\/prakash-kumar163\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88176","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\/86"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=88176"}],"version-history":[{"count":15,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88176\/revisions"}],"predecessor-version":[{"id":200911,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88176\/revisions\/200911"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/45511"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=88176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=88176"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=88176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}