{"id":59115,"date":"2016-09-12T08:26:00","date_gmt":"2016-09-12T08:26:00","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=59115"},"modified":"2017-04-10T13:09:49","modified_gmt":"2017-04-10T13:09:49","slug":"creating-automated-server-actions-odoo","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/","title":{"rendered":"Creating Automated Server Actions in Odoo"},"content":{"rendered":"<p><img decoding=\"async\" class=\"alignnone size-full wp-image-45511\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\" alt=\"Odoo-Code-Snippet-banner\" width=\"825\" height=\"260\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png 825w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner-250x79.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner-300x95.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner-768x242.png 768w\" sizes=\"(max-width: 825px) 100vw, 825px\" loading=\"lazy\" \/><\/p>\n<p><strong>Automated server actions<\/strong> automatically trigger actions for various screens.<\/p>\n<p>Odoo provide very simple way to create automated server actions.<\/p>\n<p>Steps to create automated server actions in Odoo ,<\/p>\n<ul>\n<li>Install &#8220;<strong>Automated Action Rules<\/strong>&#8221; module at Odoo. This module enable feature to create automated server actions.<\/li>\n<li>Create a method using python which will trigger using server\u00a0action,<\/li>\n<\/ul>\n<pre>@api.model \r\ndef <strong>automated_action_method<\/strong>(self):\r\n     active_ids = self._context.get('active_ids')\r\n     for active_id in active_ids:\r\n         self.env['model.name'].browse(active_id).name = 'name'\r\nreturn True<\/pre>\n<ul>\n<li>Create a server action using xml which will trigger using automated actions.<\/li>\n<\/ul>\n<pre>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\r\n&lt;openerp&gt;\r\n  &lt;data noupdate=\"0\"&gt;\r\n    &lt;record id=\"<strong>id_server_action<\/strong>\" model=\"ir.actions.server\"&gt;\r\n      &lt;field name=\"name\"&gt;Odoo Server Action&lt;\/field&gt;\r\n      &lt;field name=\"model_id\" ref=\"product.model_model_model\"\/&gt;\r\n      &lt;field name=\"state\"&gt;code&lt;\/field&gt;\r\n      &lt;field name=\"code\"&gt;action = env[\"model.model\"].<strong>automated_action_method<\/strong>()&lt;\/field&gt;\r\n    &lt;\/record&gt;\r\n  &lt;\/data&gt;\r\n&lt;\/openerp&gt;<\/pre>\n<ul>\n<li>Create a automated server action using xml,\n<ul>\n<li>There have few attributes which are used for automated server actions,\n<ul>\n<li><strong>name :\u00a0<\/strong>Automated Server Action Name<\/li>\n<li><strong>active :\u00a0<\/strong>place &#8216;1&#8217; to active or place &#8216;0&#8217;\u00a0 to inactive automated server action<\/li>\n<li>\u00a0<strong>model_id : <\/strong>Format to define model_id<br \/>\nmodule.model_model_name<\/p>\n<ul>\n<li>Here <strong>module<\/strong> is Module where automated server action is created<\/li>\n<li>In model_model_name : &#8220;<strong>model_<\/strong>&#8221; is prefix and &#8220;<strong>model_name<\/strong>&#8221; is model name where automated server action will be triggered.<\/li>\n<\/ul>\n<\/li>\n<li><strong>kind :<\/strong>\n<ol>\n<li>&#8216;on_create&#8217; = &#8216;On Creation&#8217;<\/li>\n<li>&#8216;on_write&#8217; = &#8216;On Update&#8217;<\/li>\n<li>&#8216;on_create_or_write&#8217; = &#8216;On Creation &amp; Update&#8217;<\/li>\n<li>&#8216;on_unlink&#8217; = &#8216;On Deletion&#8217;<\/li>\n<li>&#8216;on_change&#8217; = &#8216;Based on Form Modification&#8217;<\/li>\n<li>&#8216;on_time&#8217; = &#8216;Based on Timed Condition&#8217;<\/li>\n<\/ol>\n<\/li>\n<li><strong>server_action_ids :\u00a0<\/strong>define server action ids<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<pre>&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\r\n&lt;openerp&gt;\r\n\u00a0 &lt;data noupdate=\"0\"&gt;\r\n\u00a0 \u00a0 &lt;record id=\"id_automated_server_action\" model=\"base.action.rule\"&gt;\r\n      &lt;field name=\"name\"&gt;Odoo Automated Server Action&lt;\/field&gt;\r\n      &lt;field name=\"model_id\" ref=\"module.model_model_name\"\/&gt;\r\n      &lt;field name=\"active\"&gt;1&lt;\/field&gt;\r\n      &lt;field name=\"kind\"&gt;on_write&lt;\/field&gt;\r\n      &lt;field name=\"server_action_ids\" eval=\"[(6,0,[ref('<strong>id_server_action<\/strong>')])]\"\/&gt;\r\n    &lt;\/record&gt;\r\n  &lt;\/data&gt;\r\n&lt;\/openerp&gt;<\/pre>\n<p style=\"text-align: left\">\n","protected":false},"excerpt":{"rendered":"<p>Automated server actions automatically trigger actions for various screens. Odoo provide very simple way to create automated server actions. Steps to create automated server actions in Odoo , Install &#8220;Automated Action Rules&#8221; module at Odoo. This module enable feature to create automated server actions. Create a method using python which will trigger using server\u00a0action, @api.model <a href=\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":90,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2007,166],"tags":[3616,1267,248],"class_list":["post-59115","post","type-post","status-publish","format-standard","hentry","category-odoo","category-openerp","tag-automated-server-action","tag-odoo","tag-opernerp"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Automated Server Actions<\/title>\n<meta name=\"description\" content=\"Automated server actions automatically trigger actions for various screens. Odoo provide very simple way to create automated server actions.\" \/>\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\/creating-automated-server-actions-odoo\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automated Server Actions\" \/>\n<meta property=\"og:description\" content=\"Automated server actions automatically trigger actions for various screens. Odoo provide very simple way to create automated server actions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-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=\"2016-09-12T08:26:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-04-10T13:09:49+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\" \/>\n<meta name=\"author\" content=\"Ashish 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=\"Ashish 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\/creating-automated-server-actions-odoo\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/\"},\"author\":{\"name\":\"Ashish Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b92c698256ce0bcb9613acf8bbf5b2d\"},\"headline\":\"Creating Automated Server Actions in Odoo\",\"datePublished\":\"2016-09-12T08:26:00+00:00\",\"dateModified\":\"2017-04-10T13:09:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/\"},\"wordCount\":191,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"keywords\":[\"automated server action\",\"odoo\",\"opernerp\"],\"articleSection\":[\"Odoo\",\"OpenERP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/\",\"url\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/\",\"name\":\"Automated Server Actions\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"datePublished\":\"2016-09-12T08:26:00+00:00\",\"dateModified\":\"2017-04-10T13:09:49+00:00\",\"description\":\"Automated server actions automatically trigger actions for various screens. Odoo provide very simple way to create automated server actions.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage\",\"url\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\",\"contentUrl\":\"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Creating Automated Server Actions 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\/3b92c698256ce0bcb9613acf8bbf5b2d\",\"name\":\"Ashish Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?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\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Ashish Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/ashish067\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Automated Server Actions","description":"Automated server actions automatically trigger actions for various screens. Odoo provide very simple way to create automated server actions.","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\/creating-automated-server-actions-odoo\/","og_locale":"en_US","og_type":"article","og_title":"Automated Server Actions","og_description":"Automated server actions automatically trigger actions for various screens. Odoo provide very simple way to create automated server actions.","og_url":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-09-12T08:26:00+00:00","article_modified_time":"2017-04-10T13:09:49+00:00","og_image":[{"url":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","type":"","width":"","height":""}],"author":"Ashish Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Ashish Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/"},"author":{"name":"Ashish Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3b92c698256ce0bcb9613acf8bbf5b2d"},"headline":"Creating Automated Server Actions in Odoo","datePublished":"2016-09-12T08:26:00+00:00","dateModified":"2017-04-10T13:09:49+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/"},"wordCount":191,"commentCount":8,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage"},"thumbnailUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","keywords":["automated server action","odoo","opernerp"],"articleSection":["Odoo","OpenERP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/","url":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/","name":"Automated Server Actions","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage"},"thumbnailUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","datePublished":"2016-09-12T08:26:00+00:00","dateModified":"2017-04-10T13:09:49+00:00","description":"Automated server actions automatically trigger actions for various screens. Odoo provide very simple way to create automated server actions.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#primaryimage","url":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png","contentUrl":"http:\/\/webkul.com\/blog\/wp-content\/uploads\/2016\/04\/Odoo-Code-Snippet-banner.png"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/creating-automated-server-actions-odoo\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Creating Automated Server Actions 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\/3b92c698256ce0bcb9613acf8bbf5b2d","name":"Ashish Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?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\/ef2c82640f6054d8a8cfca9e3edd7edaf800ff1873b6d103c7bbf0b47dfefc1e?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Ashish Singh"},"url":"https:\/\/webkul.com\/blog\/author\/ashish067\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59115","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\/90"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=59115"}],"version-history":[{"count":10,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59115\/revisions"}],"predecessor-version":[{"id":227631,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/59115\/revisions\/227631"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=59115"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=59115"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=59115"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}