{"id":23085,"date":"2023-02-28T18:42:30","date_gmt":"2023-02-28T17:42:30","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=23085"},"modified":"2023-03-05T20:24:47","modified_gmt":"2023-03-05T19:24:47","slug":"programmatically-change-the-data-source-of-a-power-bi-report","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/","title":{"rendered":"Programmatically change the data source of a Power BI Report"},"content":{"rendered":"\n<p><strong>Executive Summary<\/strong><\/p>\n\n\n\n<p>In this post, I want to demonstrate how to programmatically change the data source of a Power BI report. This can be useful when you develop and test the report then want to publish the report in Test, QA and Production using different data sources.<\/p>\n\n\n\n<p><strong>Prerequisite<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install PowerShell library ReportingServicesTools from the <a href=\"https:\/\/github.com\/microsoft\/ReportingServicesTools\">git<\/a><\/li>\n<\/ul>\n\n\n\n<p><strong>Step 1: The Power BI report<\/strong><\/p>\n\n\n\n<p>It is important to define the data source in your original Power BI Report as a parameter. The step for that can be read under <a href=\"https:\/\/learn.microsoft.com\/en-gb\/power-bi\/report-server\/connect-data-source-apis\">Link<\/a>. Find here some screenshots I took during my test.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"876\" height=\"559\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png\" alt=\"\" class=\"wp-image-23086\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png 876w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11-300x191.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11-768x490.png 768w\" sizes=\"auto, (max-width: 876px) 100vw, 876px\" \/><figcaption class=\"wp-element-caption\">Screenshot 1: Open Power Query Editor<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"616\" height=\"392\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-12.png\" alt=\"\" class=\"wp-image-23087\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-12.png 616w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-12-300x191.png 300w\" sizes=\"auto, (max-width: 616px) 100vw, 616px\" \/><figcaption class=\"wp-element-caption\">Screenshot 2: Open Manage Parameters<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"863\" height=\"560\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-13.png\" alt=\"\" class=\"wp-image-23088\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-13.png 863w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-13-300x195.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-13-768x498.png 768w\" sizes=\"auto, (max-width: 863px) 100vw, 863px\" \/><figcaption class=\"wp-element-caption\">Screenshot 3: Edit Data Source Parameters<\/figcaption><\/figure>\n\n\n\n<p><strong>Step 2: change the Data Source<\/strong><\/p>\n\n\n\n<p>After designing the report, you can deploy it and you will be able to change the data source with the script in listing 1. It is important to notice that, I use the <em><strong>report url<\/strong><\/em> and not the <strong><em>web services url<\/em><\/strong>. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"940\" height=\"356\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-14.png\" alt=\"\" class=\"wp-image-23089\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-14.png 940w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-14-300x114.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-14-768x291.png 768w\" sizes=\"auto, (max-width: 940px) 100vw, 940px\" \/><figcaption class=\"wp-element-caption\">Screenshot 4: Use Report URL<\/figcaption><\/figure>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\n#--Listing 1\n\n#.pbix\n\n## start the PowerShell in the context of a user who have the necessary permission on the report server\n##\n##https:\/\/learn.microsoft.com\/de-de\/power-bi\/report-server\/connect-data-source-apis\n##https:\/\/learn.microsoft.com\/de-de\/power-bi\/report-server\/connect-data-source-apis-pre-oct-2020\n\n## Install the Module\n#Install-Module -Name ReportingServicesTools\n\n## Check\n#Get-Module -ListAvailable -Name ReportingServicesTools\n\n## Import the Module\nImport-Module ReportingServicesTools\n\n\n$reportPortalUri = &quot;http:\/\/nts_reportserver\/reports&quot;\n$ntsContent = Get-RsRestFolderContent &#039;\/ntsfolder&#039;  -ReportPortalUri $reportPortalUri  | Where-Object {$_.Name -eq &#039;nts_report&#039;}\n\n$ntsRsRestItemDataModelParameters = Get-RsRestItemDataModelParameters -RsItem \n &#039;\/ntsfolder\/nts_report&#039; -ReportPortalUri $reportPortalUri  \n\n$parameterdictionary = @{}\nforeach ($parameter in $ntsRsRestItemDataModelParameters) { $parameterdictionary.Add($parameter.Name, $parameter); }\n\n### Set the Parameter\n$parameterdictionary&#x5B;\u201cServerName\u201d].Value = &#039;NTS_DATABASESERVER\\INST01&#039;\n$parameterdictionary&#x5B;\u201cDatabasename\u201d].Value = &#039;NTS_TestDB&#039;\n\n### Update the report\nSet-RsRestItemDataModelParameters -RsItem &#039;\/ntsfolder\/nts_report&#039; -DataModelParameters $ntsRsRestItemDataModelParameters\n\n\n<\/pre><\/div>\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>The post uses the PowerShell library ReportingServicesTools to change the data source of a Power BI Report. The data source must be previously define in the .pbix-file as parameter. Of course, this library has more features that you can use to remotely manage your Power BI Reports. Note the use of the command parameter \u201c-RsItem\u201d and the &#8220;reportserver url&#8221; in the script.<\/p>\n\n\n\n<p>#beSharing<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Executive Summary In this post, I want to demonstrate how to programmatically change the data source of a Power BI report. This can be useful when you develop and test the report then want to publish the report in Test, QA and Production using different data sources. Prerequisite Step 1: The Power BI report It [&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,229,99],"tags":[1496,2861],"type_dbi":[],"class_list":["post-23085","post","type-post","status-publish","format-standard","hentry","category-business-intelligence","category-database-administration-monitoring","category-sql-server","tag-power-bi-report-server","tag-reportingservicestools"],"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>Programmatically change the data source of a Power BI Report - 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\/programmatically-change-the-data-source-of-a-power-bi-report\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Programmatically change the data source of a Power BI Report\" \/>\n<meta property=\"og:description\" content=\"Executive Summary In this post, I want to demonstrate how to programmatically change the data source of a Power BI report. This can be useful when you develop and test the report then want to publish the report in Test, QA and Production using different data sources. Prerequisite Step 1: The Power BI report It [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-28T17:42:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-05T19:24:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.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=\"3 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\/programmatically-change-the-data-source-of-a-power-bi-report\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"Programmatically change the data source of a Power BI Report\",\"datePublished\":\"2023-02-28T17:42:30+00:00\",\"dateModified\":\"2023-03-05T19:24:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/\"},\"wordCount\":232,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png\",\"keywords\":[\"Power BI Report Server\",\"ReportingServicesTools\"],\"articleSection\":[\"Business Intelligence\",\"Database Administration &amp; Monitoring\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/\",\"name\":\"Programmatically change the data source of a Power BI Report - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png\",\"datePublished\":\"2023-02-28T17:42:30+00:00\",\"dateModified\":\"2023-03-05T19:24:47+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png\",\"width\":876,\"height\":559},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Programmatically change the data source of a Power BI Report\"}]},{\"@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":"Programmatically change the data source of a Power BI Report - 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\/programmatically-change-the-data-source-of-a-power-bi-report\/","og_locale":"en_US","og_type":"article","og_title":"Programmatically change the data source of a Power BI Report","og_description":"Executive Summary In this post, I want to demonstrate how to programmatically change the data source of a Power BI report. This can be useful when you develop and test the report then want to publish the report in Test, QA and Production using different data sources. Prerequisite Step 1: The Power BI report It [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/","og_site_name":"dbi Blog","article_published_time":"2023-02-28T17:42:30+00:00","article_modified_time":"2023-03-05T19:24:47+00:00","og_image":[{"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png","type":"","width":"","height":""}],"author":"Microsoft Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Microsoft Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"Programmatically change the data source of a Power BI Report","datePublished":"2023-02-28T17:42:30+00:00","dateModified":"2023-03-05T19:24:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/"},"wordCount":232,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png","keywords":["Power BI Report Server","ReportingServicesTools"],"articleSection":["Business Intelligence","Database Administration &amp; Monitoring","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/","url":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/","name":"Programmatically change the data source of a Power BI Report - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png","datePublished":"2023-02-28T17:42:30+00:00","dateModified":"2023-03-05T19:24:47+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2023\/02\/image-11.png","width":876,"height":559},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/programmatically-change-the-data-source-of-a-power-bi-report\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Programmatically change the data source of a Power BI Report"}]},{"@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\/23085","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=23085"}],"version-history":[{"count":5,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/23085\/revisions"}],"predecessor-version":[{"id":23227,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/23085\/revisions\/23227"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=23085"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=23085"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=23085"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=23085"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}