Accessing the FHIR data in Microsoft Azure Storage explorer using the managed version

I am working on Azure FHIR server to load Patient resource. The template provided in the below link is used(Managed version).

https://azure.microsoft.com/en-in/services/azure-api-for-fhir/

After installing the FHIR server and Azure api for FHIR, I have followed the steps provided in the below link to add data to the Cosmos DB.

https://learn.microsoft.com/en-us/azure/healthcare-apis/access-fhir-postman-tutorial

These steps have helped to add the patient resource to the Cosmos DB. But I am not able to view the added data in the Microsoft Azure storage explorer(Version 1.11.0). I am getting below error.

Error while trying to open the DB

Steps tried,

  1. deleted the storageExplorer folder under %appdata/roaming.
  2. Deleting "Cookies" & "Cookies-journal" files from %appdata%\storageexplorer then relaunching app

Any help would be appreciated, Thank you in Advance.

Upvotes: 0

Views: 1026

Answers (1)

One of the Microsoft Support Escalation engineer, replied as below.

In the managed version of Azure API for FHIR service, the only way to access the data is through RESTful APIs using Postman etc. You will not be able to view the data using Data Explorer on the CosmosDB blade.

To view the data in the data explorer, we need to use Open Source deployment version

https://learn.microsoft.com/en-us/azure/healthcare-apis/fhir-oss-portal-quickstart

Template for open source can be found in the below URL.

https://github.com/Microsoft/fhir-server/blob/master/docs/DefaultDeployment.md

After following the steps, I am able to view the data in the data explorer of Cosmos DB.

Upvotes: 1

Related Questions