{"id":88818,"date":"2017-07-07T14:51:40","date_gmt":"2017-07-07T14:51:40","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=88818"},"modified":"2021-07-16T12:32:02","modified_gmt":"2021-07-16T12:32:02","slug":"remote-action-function-visualforce-page","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/","title":{"rendered":"Remote Action function in Visualforce Page"},"content":{"rendered":"\n<p>In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce. Let&#8217;s get started!<\/p>\n\n\n\n<div class=\"wk-index-wrap\"><h3 class=\"index-title\">What is Remote Action function in Salesforce?<\/h3><\/div><div class=\"margin-bottom-50\">\n<p>Remote action function in salesforce allows user to access any method from any class through javasrcipt methods, and get the result as a javascript object for further manipulation.<\/p>\n\n\n\n<p>Points to remember while implementing remote action function:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Remote action method should have <strong>@RemoteAction<\/strong> annotation.<\/li><li>The method should also be <strong>Global<\/strong> and <strong>Static<\/strong><\/li><\/ul>\n<\/div>\n\n\n\n<div class=\"wk-index-wrap\"><h3 class=\"index-title\">Implementation<\/h3><\/div><div class=\"margin-bottom-50\">\n<p>Let&#8217;s start with controller code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">global with sharing class ContactJs {  \n    \/**\n    * Webkul Software.\n    *\n    * @category  Webkul\n    * @author    Webkul\n    * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\n    * @license   https:\/\/store.webkul.com\/license.html\n    *\/\n    public ContactJs() { } \/\/ empty constructor    \n\n    @RemoteAction \/\/the function to be called in remote action should use this annotation\n    global static list&lt;Contact&gt; getcon() {\n        \/\/function should be static and global else it will throw error\n        list&lt;Contact&gt; con1 = [SELECT id,name FROM contact limit 5];\n        if(con1!=null &amp;&amp; !con1.isEmpty()){        \n            return con1;        \n        }else{        \n            return  new list&lt;contact&gt;();        \n        }\n    }\n}<\/pre>\n\n\n\n<p>Now the Visualforce Page:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:xml\">&lt;apex:page controller=\"ContactJs\"&gt;\n    &lt;!-- \n        \/**\n         * Webkul Software.\n         *\n         * @category  Webkul\n         * @author    Webkul\n         * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\n         * @license   https:\/\/store.webkul.com\/license.html\n         *\/\n     --&gt;\n    &lt;script type = \"text\/javascript\"&gt;\n    function getRemoteContact() {\n        var a;\n        Visualforce.remoting.Manager.invokeAction(\n            \/\/Invoking controller action getcon\n            '{!$RemoteAction.ContactJs.getcon}',\n            \n            function(result, event){\n               \/\/We can access the records through the parameter result\n               \/\/event.status determines if there is error or not \n               if(event.status){\n                    document.getElementById('remoteContactId').innerHTML = 'Contact Name: &lt;br\/&gt;&lt;br\/&gt;';\n                    for(a=0;a&lt;result.length;a++){                        \n                        document.getElementById('remoteContactId').innerHTML +=  result[a].Name +'&lt;br\/&gt;';                    \n                    }                                       \n               }               \n            },\n            {escape: true}\n        );\n    }\n    &lt;\/script&gt;\n\n    &lt;button onclick=\"getRemoteContact()\"&gt;Get Contact&lt;\/button&gt;\n    &lt;div id=\"responseErrors\"&gt;&lt;\/div&gt;\n    &lt;apex:pageBlock id=\"block\"&gt;        \n        &lt;apex:pageBlockSection id=\"blockSection\" columns=\"2\"&gt;\n                &lt;span id=\"remoteContactId\"&gt;&lt;\/span&gt;\n        &lt;\/apex:pageBlockSection&gt;\n    &lt;\/apex:pageBlock&gt;\n&lt;\/apex:page&gt;<\/pre>\n<\/div>\n\n\n\n<div class=\"wk-index-wrap\"><h3 class=\"index-title\">Output<\/h3><\/div><div class=\"margin-bottom-50\">\n<p>Here is the output:<br><a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output.png\"><img decoding=\"async\" class=\"alignnone wp-image-88826 size-full\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output.png\" alt=\"\" width=\"1046\" height=\"235\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output.png 1046w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-250x56.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-300x67.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/output-768x173.png 768w\" sizes=\"(max-width: 1046px) 100vw, 1046px\" loading=\"lazy\" \/><\/a><\/p>\n<\/div>\n\n\n\n<div class=\"wk-index-wrap\"><h3 class=\"index-title\">Support<\/h3><\/div><div class=\"margin-bottom-50\">\n<p>That\u2019s all for Remote Action function in Visualforce Page, still have any issue feel free to add a ticket and let us know your views to make the code better <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\"> https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce. Let&#8217;s get started!<\/p>\n","protected":false},"author":104,"featured_media":88831,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1887],"tags":[5034],"class_list":["post-88818","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-salesforce","tag-remote-action"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Remote Action function in Visualforce Page<\/title>\n<meta name=\"description\" content=\"In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce.\" \/>\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\/remote-action-function-visualforce-page\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Remote Action function in Visualforce Page\" \/>\n<meta property=\"og:description\" content=\"In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/\" \/>\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-07T14:51:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-16T12:32:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.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=\"Aakanksha 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=\"Aakanksha 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\/remote-action-function-visualforce-page\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/\"},\"author\":{\"name\":\"Aakanksha Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\"},\"headline\":\"Remote Action function in Visualforce Page\",\"datePublished\":\"2017-07-07T14:51:40+00:00\",\"dateModified\":\"2021-07-16T12:32:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/\"},\"wordCount\":146,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png\",\"keywords\":[\"remote action\"],\"articleSection\":[\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/\",\"url\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/\",\"name\":\"Remote Action function in Visualforce Page\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png\",\"datePublished\":\"2017-07-07T14:51:40+00:00\",\"dateModified\":\"2021-07-16T12:32:02+00:00\",\"description\":\"In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Remote Action function in Visualforce Page\"}]},{\"@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\/7d54984c6524404eb2ba261ace62da80\",\"name\":\"Aakanksha Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?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\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Aakanksha Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Remote Action function in Visualforce Page","description":"In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce.","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\/remote-action-function-visualforce-page\/","og_locale":"en_US","og_type":"article","og_title":"Remote Action function in Visualforce Page","og_description":"In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce.","og_url":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-07-07T14:51:40+00:00","article_modified_time":"2021-07-16T12:32:02+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png","type":"image\/png"}],"author":"Aakanksha Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Aakanksha Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/"},"author":{"name":"Aakanksha Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80"},"headline":"Remote Action function in Visualforce Page","datePublished":"2017-07-07T14:51:40+00:00","dateModified":"2021-07-16T12:32:02+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/"},"wordCount":146,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png","keywords":["remote action"],"articleSection":["Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/","url":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/","name":"Remote Action function in Visualforce Page","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png","datePublished":"2017-07-07T14:51:40+00:00","dateModified":"2021-07-16T12:32:02+00:00","description":"In this blog, we will learn Remote Action function in Visualforce Page. First of all, we should know, what is remote action function in salesforce.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/07\/remotewebkul.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/remote-action-function-visualforce-page\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Remote Action function in Visualforce Page"}]},{"@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\/7d54984c6524404eb2ba261ace62da80","name":"Aakanksha Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?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\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Aakanksha Singh"},"url":"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88818","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\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=88818"}],"version-history":[{"count":4,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88818\/revisions"}],"predecessor-version":[{"id":296567,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88818\/revisions\/296567"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/88831"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=88818"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=88818"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=88818"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}