{"id":88156,"date":"2017-07-05T07:49:24","date_gmt":"2017-07-05T07:49:24","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=88156"},"modified":"2019-10-01T11:38:21","modified_gmt":"2019-10-01T11:38:21","slug":"working-with-xml-data-in-odoo","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/","title":{"rendered":"Working with XML data in Odoo"},"content":{"rendered":"<p>Odoo gives the developer several options&nbsp; for working with data .<\/p>\n<p>In this article, we will be looking at the XML data options in odoo.<br \/>\nWe will study how to create , update and&nbsp; delete the records using xml data.<\/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 demo.xml)&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<div id=\"wkid0\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Create&nbsp; Records<\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">\n<p>For creating the record of model&nbsp; , create a <strong>&lt;record\/&gt;<\/strong> tag and place the fields Like:<\/p>\n<pre class=\"brush:xml\">&lt;record model=\"model_name\" id=\"record_id\"&gt;\n    &lt;field name=\"field_name\"&gt;field_data&lt;\/field&gt;\n&lt;\/record&gt;\n\n\n<\/pre>\n<pre class=\"brush:xml\">&lt;record model=\"product.product\" id=\"product_webkul\"&gt;\n    &lt;field name=\"name\"&gt;Webkul Product&lt;\/field&gt;\n&lt;\/record&gt;<\/pre>\n<p>Now your xml file will look like:<\/p>\n<pre class=\"brush:xml\">&lt;odoo&gt;\n    &lt;data noupdate=\"1\"&gt;\n        &lt;record model=\"product.product\" id=\"product_webkul\"&gt;\n            &lt;field name=\"name\"&gt;Webkul Product&lt;\/field&gt;\n        &lt;\/record&gt;\n    &lt;\/data&gt;\n&lt;\/odoo&gt;<\/pre>\n<\/div>\n<\/div>\n<div id=\"wkid0\" class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Modify&nbsp; Records<\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">\n<p>Some time you&nbsp; may required to update the <span class=\"\">previously<\/span> created record by other module.<br \/>\nFor this create the record with&nbsp; id (<strong>module_name.record_id<\/strong>) in your module like:<\/p>\n<pre class=\"brush:xml\">&lt;record model=\"model_name\" id=\"module_name.record_id\"&gt;\n    &lt;field name=\"field_name\"&gt;new_field_data&lt;\/field&gt;\n&lt;\/record&gt;\n\n<\/pre>\n<pre class=\"brush:xml\">&lt;record model=\"product.product\" id=\"product.service_order_01\"&gt;\n    &lt;field name=\"name\"&gt;Demo Product&lt;\/field&gt;\n&lt;\/record&gt;\n<\/pre>\n<p><strong>NOTE<\/strong>: you must place the module_name in depends of __mainifest__.py<\/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\">Delete&nbsp; Records<\/h3>\n<\/div>\n<div class=\"panel-body\" style=\"text-align: left\">\n<p>In case you want to delete the record , use <strong>&lt;delete\/&gt;<\/strong> tag&nbsp; along with <strong>id or search<\/strong>&nbsp;&nbsp; like:<\/p>\n<pre class=\"brush:xml\">&lt;delete model=\"model_name\"   search=\"[('id','=',ref('module_name.record_id'))]\"\/&gt;\n&lt;delete model=\"model_name\" id=\"module_name.record_id\"\/&gt;<\/pre>\n<pre class=\"brush:xml\">&lt;delete model=\"product.product\" search=\"[('id','=', ref('product.service_order_01'))]\"\/&gt;\n&lt;delete model=\"product.product\" id=\"product.service_delivery\"\/&gt;<\/pre>\n<p>While using&nbsp; search you can specify&nbsp; domain&nbsp; on fields also like<\/p>\n<pre class=\"brush:xml\">&lt;delete model=\"product.product\" search=\"[('name','=','demo'),('sale_ok','=',False)]\"\/&gt;\n\n<\/pre>\n<p><strong>NOTE<\/strong>:<\/p>\n<p>You must also place the module_name in depends&nbsp; keys of __mainifest__.py.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\"><\/div>\n<div 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\/calling-methods-from-xml-data-in-odoo\">calling methods from xml in odoo<\/a>.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Odoo gives the developer several options&nbsp; for working with data . In this article, we will be looking at the XML data options in odoo. We will study how to create , update and&nbsp; delete the records using xml data. &nbsp; Create DEMO DATA File First of all you need to create a xml file(let&#8217;s <a href=\"https:\/\/webkul.com\/blog\/working-with-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,166],"tags":[5008,5011,5019,5007,5009,5010,5006],"class_list":["post-88156","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-odoo","category-openerp","tag-create-record-in-odoo","tag-delete-record-in-odoo","tag-delete-tag-in-odoo","tag-demo-data-in-odoo","tag-modify-record-in-odoo","tag-update-record-in-odoo","tag-xml-data-in-odoo"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Working with 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\/working-with-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=\"Working with XML data in Odoo - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Odoo gives the developer several options&nbsp; for working with data . In this article, we will be looking at the XML data options in odoo. We will study how to create , update and&nbsp; delete the records using xml data. &nbsp; Create DEMO DATA File First of all you need to create a xml file(let&#8217;s [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/working-with-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:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-10-01T11:38:21+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/\"},\"author\":{\"name\":\"Prakash Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b\"},\"headline\":\"Working with XML data in Odoo\",\"datePublished\":\"2017-07-05T07:49:24+00:00\",\"dateModified\":\"2019-10-01T11:38:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/\"},\"wordCount\":271,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"keywords\":[\"create-record-in-odoo\",\"delete-record-in-odoo\",\"delete-tag-in-odoo\",\"demo-data-in-odoo\",\"modify-record-in-odoo\",\"update-record-in-odoo\",\"xml-data-in-odoo\"],\"articleSection\":[\"Odoo\",\"OpenERP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/\",\"url\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/\",\"name\":\"Working with XML data in Odoo - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/working-with-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:24+00:00\",\"dateModified\":\"2019-10-01T11:38:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/working-with-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\/working-with-xml-data-in-odoo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Working with 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":"Working with 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\/working-with-xml-data-in-odoo\/","og_locale":"en_US","og_type":"article","og_title":"Working with XML data in Odoo - Webkul Blog","og_description":"Odoo gives the developer several options&nbsp; for working with data . In this article, we will be looking at the XML data options in odoo. We will study how to create , update and&nbsp; delete the records using xml data. &nbsp; Create DEMO DATA File First of all you need to create a xml file(let&#8217;s [...]","og_url":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-07-05T07:49:24+00:00","article_modified_time":"2019-10-01T11:38:21+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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/"},"author":{"name":"Prakash Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b41d806aa1c7ec81f958437fac62e5b"},"headline":"Working with XML data in Odoo","datePublished":"2017-07-05T07:49:24+00:00","dateModified":"2019-10-01T11:38:21+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/"},"wordCount":271,"commentCount":4,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","keywords":["create-record-in-odoo","delete-record-in-odoo","delete-tag-in-odoo","demo-data-in-odoo","modify-record-in-odoo","update-record-in-odoo","xml-data-in-odoo"],"articleSection":["Odoo","OpenERP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/","url":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/","name":"Working with XML data in Odoo - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/working-with-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:24+00:00","dateModified":"2019-10-01T11:38:21+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/working-with-xml-data-in-odoo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/working-with-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\/working-with-xml-data-in-odoo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Working with 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\/88156","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=88156"}],"version-history":[{"count":26,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88156\/revisions"}],"predecessor-version":[{"id":200910,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88156\/revisions\/200910"}],"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=88156"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=88156"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=88156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}