{"id":20181,"date":"2023-02-28T18:17:03","date_gmt":"2023-02-28T17:17:03","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=20181"},"modified":"2023-06-12T10:08:45","modified_gmt":"2023-06-12T08:08:45","slug":"power-bi-report-server-patch-management","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/","title":{"rendered":"Power BI Report Server Patch Management"},"content":{"rendered":"\n<p><strong>Executive Summary<\/strong><\/p>\n\n\n\n<p>As service manager in your company, you want to have your MS SQL component patch with the latest version. In a regular basis you need to know the current version of the MS SQL components on your server. In this blog I will focus on the component Power BI Report Server. <\/p>\n\n\n\n<p>&nbsp;<\/p>\n\n\n\n<p>Typically, the following services are in the responsibility of a MS SQL service manager: MS SQL Server,\u00a0\u00a0 Analysis Services , Integrated Services, Reporting Services (SSRS) and Power BI Reporting Services. The DBA can determine installed version of the software by running the command in Listing 1. The result from that command is comparable with the result presented in the Configuration Manager of the MS SQL component. Except for Power BI and Reporting Services\u00a0 as you can see in the screenshot 1 below.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\n### Listing 1\nGet-SilSoftware \n<\/pre><\/div>\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"940\" height=\"712\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png\" alt=\"\" class=\"wp-image-23073\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png 940w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9-300x227.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9-768x582.png 768w\" sizes=\"auto, (max-width: 940px) 100vw, 940px\" \/><figcaption class=\"wp-element-caption\">Screenshot 1: result of Get-SilSoftware<\/figcaption><\/figure>\n\n\n\n<p>In picture 1 you can notice that there is a MS SQL 2022 in this test environment. The version information for the SQL Server is shown correctly. For Power BI the number in the result in picture 1 from the PowerShell command represent the<strong><em> Build number<\/em><\/strong>. The value required by the service manager is the one displayed in the configuration manager user interface (picture 2).\u00a0<\/p>\n\n\n\n<p>The question is, how to get this value in a reliable automatic way? How to get it in a PowerShell script? That is what I will shared with you in this blog. And it is important to notice that, only &#8220;standard&#8221; PowerShell modules are used. No addition PowerShell library is needed.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"940\" height=\"508\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-10.png\" alt=\"\" class=\"wp-image-23074\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-10.png 940w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-10-300x162.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-10-768x415.png 768w\" sizes=\"auto, (max-width: 940px) 100vw, 940px\" \/><figcaption class=\"wp-element-caption\">Screenshot 2: Configuration Manager. Product Version<\/figcaption><\/figure>\n\n\n\n<p>\ud83d\ude09 Picture 2 should normally show the current installed version of Power BI Report Server. In my test installation, I did not check why the product version is empty in the configuration manager. I found even this fact good for my test. Because, I want to get the correct version by using a PowerShell script. That is what, I will show in the next step.\u00a0<\/p>\n\n\n\n<p><strong>How to get the Product Version?<\/strong><\/p>\n\n\n\n<p>To get the version of our current Power BI Reporting Services, I use the registry key as documented <a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/reporting-services\/tools\/access-the-reporting-services-wmi-provider?view=sql-server-ver16\">here<\/a>. This is a link on Reporting Services and as you may know, Power BI Reporting Services is fundamentally a SSRS. The commands are in listing 2.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\n# Listing 2\n$ntsComputerName = \u2018NTS_COMPUTER\u2019\n$ntsWmiObject = Get-WmiObject -namespace root\\Microsoft\\SqlServer\\ReportServer  -class __Namespace -ComputerName $ntsComputerName |select Name\n\n$ntsName = $ntsWmiObject.Name\n\n$ntsWmiObject = Get-WmiObject -namespace &quot;root\\Microsoft\\SqlServer\\ReportServer\\$ntsName&quot; -class __Namespace -ComputerName $ntsComputerName |select Name\n\n$ntsName = $ntsWmiObject.Name\n\n### If you get an error, check the instance name and change it. RS_PBIRS\n$ntsWmiObject = Get-WmiObject -namespace &quot;root\\Microsoft\\SqlServer\\ReportServer\\RS_PBIRS\\$ntsName&quot; -class MSReportServer_Instance -ComputerName  $ntsComputerName\n\n$ntsName = $ntsWmiObject.Version\n$ntsName  \n\n\n<\/pre><\/div>\n\n\n<p>From MS SQL 2017, Name Instance of Reporting Services \/ Power BI Reporting Services are not possible anymore. But in older version, it was possible to use named instance. Listing 3 will retrieve the version of all named instances on a server.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\n#### Listing 3\n## Replace &quot;Named_Instance&quot; with your instance name\n\n$ntsWmiObject = Get-WmiObject -namespace &quot;root\\Microsoft\\SqlServer\\ReportServer\\Named_Instance\\$ntsName&quot; -class MSReportServer_Instance -ComputerName  $ntsComputerName\n\n$ntsWmiObject.Version\n\n<\/pre><\/div>\n\n\n<p><strong>Important Notice (for listing 3)<\/strong><\/p>\n\n\n\n<p>You should notice that the command in listing 3 retrieves the information for all install instances. Although you query a specific instance, you get the result of all instances. So you should consider removing duplicated entry from the final result in your implementation. The function in listing 4 take a server name as input and retrieves all the installations (also Named Instances) of Power BI\/Reporting Services on this server. I will insist on it: remove duplicated value from the returned result if you want to use it.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\n# Listing 4\nfunction Discover_SSRS{\n\tparam( &#x5B;Parameter(Mandatory = $true)]  &#x5B;String] $ntsComputerName  )\n\t\n    $ntsWmiObjects = Get-WmiObject -namespace root\\Microsoft\\SqlServer\\ReportServer  -class __Namespace -ComputerName  $ntsComputerName | select Name\n\t\n    $ntsDuplicatedWmiObjects = &#x5B;System.Collections.ArrayList]::new()\n\t\n\tforeach( $ntsWmiO in $ntsWmiObjects){       \n\t\t$ntsName = $ntsWmiO.Name\n        $ntsWmiObjectNamespaces = Get-WmiObject -namespace &quot;root\\Microsoft\\SqlServer\\ReportServer\\$ntsName&quot; -class __Namespace -ComputerName $ntsComputerName | select Name\n         \n        foreach( $ntsWmiObjectNamespace in $ntsWmiObjectNamespaces){\n\t\t\t$ntsNameV = $ntsWmiObjectNamespace.Name\n                 \n            $ntsDuplicatedWmiObject = Get-WmiObject -namespace &quot;root\\Microsoft\\SqlServer\\ReportServer\\$ntsName\\$ntsNameV&quot; -class MSReportServer_Instance -ComputerName  $ntsComputerName\n             \n\t\t\t$ntsDuplicatedWmiObjects.Add($ntsDuplicatedWmiObject) &gt; $null\n        }             \n\n    }  \n\t\n    return $ntsDuplicatedWmiObjects \n}\n\n\n$returnArray = @( Discover_SSRS -ntsComputerName &#039;NTS_COMPUTER&#039; )\n  \n\n\n<\/pre><\/div>\n\n\n<p><strong>Final words<\/strong><\/p>\n\n\n\n<p>The post shows the command to get the version of install Power BI or Reporting Services in your environment.\u00a0I hope this will help you, not to lose track of the version of the installation software on your server.<\/p>\n\n\n\n<p>#beSharing<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Executive Summary As service manager in your company, you want to have your MS SQL component patch with the latest version. In a regular basis you need to know the current version of the MS SQL components on your server. In this blog I will focus on the component Power BI Report Server. &nbsp; Typically, [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[294,42],"tags":[1729,1496],"type_dbi":[],"class_list":["post-20181","post","type-post","status-publish","format-standard","hentry","category-business-intelligence","category-operating-systems","tag-patch-manager","tag-power-bi-report-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Power BI Report Server Patch Management - dbi 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:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Power BI Report Server Patch Management\" \/>\n<meta property=\"og:description\" content=\"Executive Summary As service manager in your company, you want to have your MS SQL component patch with the latest version. In a regular basis you need to know the current version of the MS SQL components on your server. In this blog I will focus on the component Power BI Report Server. &nbsp; Typically, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-28T17:17:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-12T08:08:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png\" \/>\n<meta name=\"author\" content=\"Microsoft Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Microsoft Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"Power BI Report Server Patch Management\",\"datePublished\":\"2023-02-28T17:17:03+00:00\",\"dateModified\":\"2023-06-12T08:08:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/\"},\"wordCount\":545,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png\",\"keywords\":[\"Patch Manager\",\"Power BI Report Server\"],\"articleSection\":[\"Business Intelligence\",\"Operating systems\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/\",\"name\":\"Power BI Report Server Patch Management - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png\",\"datePublished\":\"2023-02-28T17:17:03+00:00\",\"dateModified\":\"2023-06-12T08:08:45+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png\",\"width\":940,\"height\":712},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Power BI Report Server Patch Management\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\",\"name\":\"Microsoft Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"caption\":\"Microsoft Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Power BI Report Server Patch Management - dbi 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:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/","og_locale":"en_US","og_type":"article","og_title":"Power BI Report Server Patch Management","og_description":"Executive Summary As service manager in your company, you want to have your MS SQL component patch with the latest version. In a regular basis you need to know the current version of the MS SQL components on your server. In this blog I will focus on the component Power BI Report Server. &nbsp; Typically, [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/","og_site_name":"dbi Blog","article_published_time":"2023-02-28T17:17:03+00:00","article_modified_time":"2023-06-12T08:08:45+00:00","og_image":[{"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png","type":"","width":"","height":""}],"author":"Microsoft Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Microsoft Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"Power BI Report Server Patch Management","datePublished":"2023-02-28T17:17:03+00:00","dateModified":"2023-06-12T08:08:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/"},"wordCount":545,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png","keywords":["Patch Manager","Power BI Report Server"],"articleSection":["Business Intelligence","Operating systems"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/","url":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/","name":"Power BI Report Server Patch Management - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png","datePublished":"2023-02-28T17:17:03+00:00","dateModified":"2023-06-12T08:08:45+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-9.png","width":940,"height":712},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/power-bi-report-server-patch-management\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Power BI Report Server Patch Management"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4","name":"Microsoft Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","caption":"Microsoft Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20181","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=20181"}],"version-history":[{"count":12,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20181\/revisions"}],"predecessor-version":[{"id":23225,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/20181\/revisions\/23225"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=20181"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=20181"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=20181"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=20181"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}