{"id":63023,"date":"2016-10-25T16:25:46","date_gmt":"2016-10-25T16:25:46","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=63023"},"modified":"2024-02-21T09:33:32","modified_gmt":"2024-02-21T09:33:32","slug":"create-ui-form-magento2-part-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/","title":{"rendered":"Create Ui Form In Magento2 \u2013 Part 2"},"content":{"rendered":"\n<p>In previous blog we created a Ui Form in admin.<br>See <a href=\"http:\/\/webkul.com\/blog\/create-ui-form-magento2-part-1\/\" target=\"_blank\" rel=\"noopener\">How Create Ui Component Form In Magento2 \u2013 Part 1<\/a>.<br>Here we will see how to fill data from database in Ui Form.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Steps to create Ui Form In Magento2<\/h3>\n\n\n\n<p>First of all create a Ui Grid for employee details table so that you can edit each record.<br>Or you can simply pass id or primary field as parameter in url directly.<br>Important thing is <strong>requestFieldName<\/strong> value in <strong>ui_component xml<\/strong> file must be same as url parameter.<\/p>\n\n\n\n<p>Here in this example primary key is id. So we used id everywhere. You can use it according to your primary key.<\/p>\n\n\n\n<p>Finally its time to display data in fields on edit page.<br>Edit <strong>DataProvider.php<\/strong>\u00a0file in location <strong>&#8216;Webkul\/UiForm\/Model&#8217;<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n\/**\n * Webkul Software.\n *\n * @category  Webkul\n * @package   Webkul_UiForm\n * @author    Webkul\n * @copyright Webkul Software Private Limited (https:\/\/webkul.com)\n * @license   https:\/\/store.webkul.com\/license.html\n *\/\nnamespace Webkul\\UiForm\\Model;\n \nuse Webkul\\UiForm\\Model\\ResourceModel\\Employee\\Collection;\n \nclass DataProvider extends \\Magento\\Ui\\DataProvider\\AbstractDataProvider\n{\n    \/**\n     * @var array\n     *\/\n    protected $_loadedData;\n    \n    \/**\n     * @var \\Webkul\\UiForm\\Model\\ResourceModel\\EmployeeDetail\\Collection\n     *\/\n    protected $collection;\n\n    \/**\n     * @param string $name\n     * @param string $primaryFieldName\n     * @param string $requestFieldName\n     * @param \\Webkul\\UiForm\\Model\\ResourceModel\\EmployeeDetail\\Collection $employeeCollection\n     *\/\n    public function __construct(\n        $name,\n        $primaryFieldName,\n        $requestFieldName,\n        Collection $employeeCollection\n    ) {\n        parent::__construct($name, $primaryFieldName, $requestFieldName);\n        $this-&gt;collection = $employeeCollection;\n    }\n\n    \/**\n     * Get data\n     *\n     * @return array\n     *\/\n    public function getData()\n    {\n        if (isset($this-&gt;_loadedData)) {\n            return $this-&gt;_loadedData;\n        }\n        $items = $this-&gt;collection-&gt;getItems();\n        foreach ($items as $employee) {\n            $this-&gt;_loadedData&#091;$employee-&gt;getId()] = $employee-&gt;getData();\n        }\n        return $this-&gt;_loadedData;\n    }\n}<\/pre>\n\n\n\n<p>Now your data will be automatically filled in fields of Ui Form.<br><img decoding=\"async\" class=\"alignnone size-full wp-image-63080\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/ui.png\" alt=\"Ui Form\" width=\"1530\" height=\"838\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/ui.png 1530w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/ui-250x137.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/ui-300x164.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/ui-768x421.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/ui-1200x657.png 1200w\" sizes=\"(max-width: 1530px) 100vw, 1530px\" loading=\"lazy\" \/><\/p>\n\n\n\n<p>That&#8217;s all for <strong>Magento Ui Component Form<\/strong>.<br>If you have any query or issue, please comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In previous blog we created a Ui Form in admin.See How Create Ui Component Form In Magento2 \u2013 Part 1.Here we will see how to fill data from database in Ui Form. Steps to create Ui Form In Magento2 First of all create a Ui Grid for employee details table so that you can edit <a href=\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":21,"featured_media":61510,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[2070,3751,3753,3754],"class_list":["post-63023","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-magento2","tag-magento2-uicomponent-form","tag-ui-component","tag-ui-form"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Ui Form using Ui Component in Magento2 - Part 2<\/title>\n<meta name=\"description\" content=\"Use Ui Component in Magento2, Create Ui Component Form in Magento 2, Ui Component Form in Magento 2, Ui Component in Magento2, Ui Form in Magento2\" \/>\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\/create-ui-form-magento2-part-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Ui Form using Ui Component in Magento2 - Part 2\" \/>\n<meta property=\"og:description\" content=\"Use Ui Component in Magento2, Create Ui Component Form in Magento 2, Ui Component Form in Magento 2, Ui Component in Magento2, Ui Form in Magento2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rahul0989\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-25T16:25:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-21T09:33:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.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=\"Rahul Mahto\" \/>\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=\"Rahul Mahto\" \/>\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\/create-ui-form-magento2-part-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/\"},\"author\":{\"name\":\"Rahul Mahto\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3002e6bca8362f6cf1c61b2663496c4f\"},\"headline\":\"Create Ui Form In Magento2 \u2013 Part 2\",\"datePublished\":\"2016-10-25T16:25:46+00:00\",\"dateModified\":\"2024-02-21T09:33:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/\"},\"wordCount\":164,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png\",\"keywords\":[\"Magento2\",\"magento2 uicomponent form\",\"Ui Component\",\"Ui Form\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/\",\"name\":\"Create Ui Form using Ui Component in Magento2 - Part 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png\",\"datePublished\":\"2016-10-25T16:25:46+00:00\",\"dateModified\":\"2024-02-21T09:33:32+00:00\",\"description\":\"Use Ui Component in Magento2, Create Ui Component Form in Magento 2, Ui Component Form in Magento 2, Ui Component in Magento2, Ui Form in Magento2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png\",\"width\":825,\"height\":260,\"caption\":\"Ui Component Form\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Ui Form In Magento2 \u2013 Part 2\"}]},{\"@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\/3002e6bca8362f6cf1c61b2663496c4f\",\"name\":\"Rahul Mahto\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?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\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Rahul Mahto\"},\"sameAs\":[\"http:\/\/webkul.com\",\"https:\/\/www.facebook.com\/rahul0989\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/rahul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Ui Form using Ui Component in Magento2 - Part 2","description":"Use Ui Component in Magento2, Create Ui Component Form in Magento 2, Ui Component Form in Magento 2, Ui Component in Magento2, Ui Form in Magento2","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\/create-ui-form-magento2-part-2\/","og_locale":"en_US","og_type":"article","og_title":"Create Ui Form using Ui Component in Magento2 - Part 2","og_description":"Use Ui Component in Magento2, Create Ui Component Form in Magento 2, Ui Component Form in Magento 2, Ui Component in Magento2, Ui Form in Magento2","og_url":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_author":"https:\/\/www.facebook.com\/rahul0989","article_published_time":"2016-10-25T16:25:46+00:00","article_modified_time":"2024-02-21T09:33:32+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png","type":"image\/png"}],"author":"Rahul Mahto","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Rahul Mahto","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/"},"author":{"name":"Rahul Mahto","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3002e6bca8362f6cf1c61b2663496c4f"},"headline":"Create Ui Form In Magento2 \u2013 Part 2","datePublished":"2016-10-25T16:25:46+00:00","dateModified":"2024-02-21T09:33:32+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/"},"wordCount":164,"commentCount":4,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png","keywords":["Magento2","magento2 uicomponent form","Ui Component","Ui Form"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/","url":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/","name":"Create Ui Form using Ui Component in Magento2 - Part 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png","datePublished":"2016-10-25T16:25:46+00:00","dateModified":"2024-02-21T09:33:32+00:00","description":"Use Ui Component in Magento2, Create Ui Component Form in Magento 2, Ui Component Form in Magento 2, Ui Component in Magento2, Ui Form in Magento2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet-1.png","width":825,"height":260,"caption":"Ui Component Form"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-ui-form-magento2-part-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Ui Form In Magento2 \u2013 Part 2"}]},{"@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\/3002e6bca8362f6cf1c61b2663496c4f","name":"Rahul Mahto","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?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\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Rahul Mahto"},"sameAs":["http:\/\/webkul.com","https:\/\/www.facebook.com\/rahul0989"],"url":"https:\/\/webkul.com\/blog\/author\/rahul\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/63023","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\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=63023"}],"version-history":[{"count":19,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/63023\/revisions"}],"predecessor-version":[{"id":423375,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/63023\/revisions\/423375"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/61510"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=63023"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=63023"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=63023"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}