{"id":56188,"date":"2016-07-29T15:23:32","date_gmt":"2016-07-29T15:23:32","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=56188"},"modified":"2016-07-29T15:23:32","modified_gmt":"2016-07-29T15:23:32","slug":"create-order-quote_address-attribute-installer-magento-2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/","title":{"rendered":"Create Order And Quote_address Attribute by Installer Magento 2"},"content":{"rendered":"<p>Create Order And Quote_address Attribute by Installer Magento 2 &#8211; There is a simple way if you want to create attribute of order and quote address by installer.<br \/>\nJust check the below code snippet then i&#8217;ll describe the points<\/p>\n<pre class=\"brush:php\">&lt;?php\r\nnamespace Namespace\\Module\\Setup;\r\n\r\nuse Magento\\Framework\\Setup\\InstallDataInterface;\r\nuse Magento\\Framework\\Setup\\ModuleContextInterface;\r\nuse Magento\\Framework\\Setup\\ModuleDataSetupInterface;\r\nuse Magento\\Sales\\Setup\\SalesSetupFactory;\r\nuse Magento\\Quote\\Setup\\QuoteSetupFactory;\r\n\r\nclass InstallData implements InstallDataInterface\r\n{\r\n    \/**\r\n     * @var Magento\\Sales\\Setup\\SalesSetupFactory\r\n     *\/\r\n    protected $_salesSetupFactory;\r\n\r\n    \/**\r\n     * @var Magento\\Quote\\Setup\\QuoteSetupFactory\r\n     *\/\r\n    protected $_quoteSetupFactory;\r\n\r\n    \/**\r\n     * @param SalesSetupFactory $salesSetupFactory\r\n     * @param QuoteSetupFactory $quoteSetupFactory\r\n     *\/\r\n    public function __construct(\r\n        SalesSetupFactory $salesSetupFactory,\r\n        QuoteSetupFactory $quoteSetupFactory\r\n    ) {\r\n        $this-&gt;_salesSetupFactory = $salesSetupFactory;\r\n        $this-&gt;_quoteSetupFactory = $quoteSetupFactory;\r\n    }\r\n\r\n    public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context) {\r\n\r\n        \/** @var \\Magento\\Sales\\Setup\\SalesSetup $salesInstaller *\/\r\n        $salesInstaller = $this-&gt;_salesSetupFactory\r\n                        -&gt;create(\r\n                            [\r\n                                'resourceName' =&gt; 'sales_setup',\r\n                                'setup' =&gt; $setup\r\n                            ]\r\n                        );\r\n        \/** @var \\Magento\\Quote\\Setup\\QuoteSetup $quoteInstaller *\/\r\n        $quoteInstaller = $this-&gt;_quoteSetupFactory\r\n                        -&gt;create(\r\n                            [\r\n                                'resourceName' =&gt; 'quote_setup',\r\n                                'setup' =&gt; $setup\r\n                            ]\r\n                        );\r\n\r\n        $this-&gt;addQuoteAttributes($quoteInstaller);\r\n        $this-&gt;addOrderAttributes($salesInstaller);\r\n    }\r\n\r\n    \/**\r\n     * add attribute in quote address\r\n     * @param object $installer\r\n     *\/\r\n    public function addQuoteAttributes($installer) {\r\n        $installer-&gt;addAttribute('quote_address', 'attribute_name', ['type' =&gt; 'text']);\r\n    }\r\n\r\n    \/**\r\n     * add attribute in sales_order\r\n     * @param object $installer\r\n     *\/\r\n    public function addOrderAttributes($installer) {\r\n        $installer-&gt;addAttribute('order', 'attribute_name', ['type' =&gt; 'text']);\r\n    }\r\n}<\/pre>\n<p>here, salesInstaller and quoteInstaller is the instance of SalesSetup and QuoteSetup.<br \/>\nAfter that i have passed them on the function to create the attribute.<br \/>\nhere, addQuoteAttributes function is responsible for create quote_address attribute and addOrderAttributes function is responsible for create order attribute.<br \/>\nhere addAttribute function contains three parameters<br \/>\nfirst parameter is entity name.<br \/>\nsecond parameter is for name of your attribute.it can be anything according to need.<br \/>\nthird parameter is for datatype of the attribute like here my attribute datatype is text.<br \/>\nHope so it&#8217;ll help you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create Order And Quote_address Attribute by Installer Magento 2 &#8211; There is a simple way if you want to create attribute of order and quote address by installer. Just check the below code snippet then i&#8217;ll describe the points &lt;?php namespace Namespace\\Module\\Setup; use Magento\\Framework\\Setup\\InstallDataInterface; use Magento\\Framework\\Setup\\ModuleContextInterface; use Magento\\Framework\\Setup\\ModuleDataSetupInterface; use Magento\\Sales\\Setup\\SalesSetupFactory; use Magento\\Quote\\Setup\\QuoteSetupFactory; class InstallData implements <a href=\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":92,"featured_media":54828,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[3464,3465,3466],"class_list":["post-56188","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-create-order-and-quote_address-attribute-by-installer-magento-2","tag-create-order-attribute-by-installer-magento-2","tag-create-quote_address-attribute-by-installer-magento-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Create Order And Quote_address Attribute by Installer Magento 2<\/title>\n<meta name=\"description\" content=\"Create Order And Quote_address Attribute by Installer Magento 2,create order attribute by installer magento 2, create quote_address attribute by installer\" \/>\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-order-quote_address-attribute-installer-magento-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Order And Quote_address Attribute by Installer Magento 2\" \/>\n<meta property=\"og:description\" content=\"Create Order And Quote_address Attribute by Installer Magento 2,create order attribute by installer magento 2, create quote_address attribute by installer\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-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:published_time\" content=\"2016-07-29T15:23:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.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=\"Narendra\" \/>\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=\"Narendra\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/\"},\"author\":{\"name\":\"Narendra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\"},\"headline\":\"Create Order And Quote_address Attribute by Installer Magento 2\",\"datePublished\":\"2016-07-29T15:23:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/\"},\"wordCount\":137,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"keywords\":[\"Create Order And Quote_address Attribute by Installer Magento 2\",\"create order attribute by installer magento 2\",\"create quote_address attribute by installer magento 2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/\",\"name\":\"Create Order And Quote_address Attribute by Installer Magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"datePublished\":\"2016-07-29T15:23:32+00:00\",\"description\":\"Create Order And Quote_address Attribute by Installer Magento 2,create order attribute by installer magento 2, create quote_address attribute by installer\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Order And Quote_address Attribute by Installer Magento 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\/3c4771ea9c127b5c6e7d1ff8b58ec70a\",\"name\":\"Narendra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Narendra\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/narendra962\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Create Order And Quote_address Attribute by Installer Magento 2","description":"Create Order And Quote_address Attribute by Installer Magento 2,create order attribute by installer magento 2, create quote_address attribute by installer","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-order-quote_address-attribute-installer-magento-2\/","og_locale":"en_US","og_type":"article","og_title":"Create Order And Quote_address Attribute by Installer Magento 2","og_description":"Create Order And Quote_address Attribute by Installer Magento 2,create order attribute by installer magento 2, create quote_address attribute by installer","og_url":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2016-07-29T15:23:32+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Narendra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Narendra","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/"},"author":{"name":"Narendra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a"},"headline":"Create Order And Quote_address Attribute by Installer Magento 2","datePublished":"2016-07-29T15:23:32+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/"},"wordCount":137,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","keywords":["Create Order And Quote_address Attribute by Installer Magento 2","create order attribute by installer magento 2","create quote_address attribute by installer magento 2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/","url":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/","name":"Create Order And Quote_address Attribute by Installer Magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","datePublished":"2016-07-29T15:23:32+00:00","description":"Create Order And Quote_address Attribute by Installer Magento 2,create order attribute by installer magento 2, create quote_address attribute by installer","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/07\/Magneto-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-order-quote_address-attribute-installer-magento-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Create Order And Quote_address Attribute by Installer Magento 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\/3c4771ea9c127b5c6e7d1ff8b58ec70a","name":"Narendra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Narendra"},"url":"https:\/\/webkul.com\/blog\/author\/narendra962\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/56188","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\/92"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=56188"}],"version-history":[{"count":3,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/56188\/revisions"}],"predecessor-version":[{"id":56196,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/56188\/revisions\/56196"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/54828"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=56188"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=56188"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=56188"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}