For questions about using FHIR Server for Azure, Microsoft's open-source implementation of FHIR for the Microsoft cloud.
Questions tagged [fhir-server-for-azure]
55 questions
2
votes
0 answers
Can we restrict resource level access with scopes in SMART on FHIR using Azure API for FHIR
We recently started exploring FHIR and we are using Azure API for FHIR with SMART on FHIR enabled. We would like to restrict access given to a SMART app (SPA) when a SMART app asks for permissions from a FHIR API. In this sample, we have updated the…

Siva Kotapati
- 21
- 3
2
votes
1 answer
FHIR Server for Azure: Azure AD mechanism when there are multiple servers
As explained here, you have to register your FHIR API with Azure AD in order to make calls to the API.
Azure AD is free for Single Sign-On for up to 10 apps: https://azure.microsoft.com/en-us/pricing/details/active-directory/
Q: Given a scenario…

Chris
- 6,105
- 6
- 38
- 55
2
votes
1 answer
Azure fhir - generate token php
How can I generate a token for azure fhir server using php. What I want is that the backend/php using guzzle will generate a token that will be use in the auth header to access the fhir server. I tried this guide…

chkm8
- 1,302
- 1
- 13
- 34
2
votes
1 answer
Is there details on using Azure FHIR API / Azure FHIR Open Source with a service bus?
I have been tasked with finding out if/how the Azure FHIR API or the Azure FHIR Open Source can be used in conjunction with an enterprise service bus? however I have found little to no information about these two together?

EAW1234
- 43
- 3
1
vote
2 answers
Avoid duplicate Patient on resource create
When sending this request multiple times, I get multiple Patients created.
{
"resourceType": "Patient",
"identifier": [
{
"use": "usual",
"system": "urn:oid:2.16.840.1.113883.19.5",
"value": "12345"
}
],
"active":…

amitaibu
- 1,026
- 1
- 7
- 23
1
vote
1 answer
Getting UnAuthorized 403 Error For Azure FHIR API
I'm using Azure FHIR API, Created and FHIR API, Registered an Client Application and added Azure Health Care APIS as well data fhir contributor role for my user, Trying to access this FHIR API via postman, Im able to generate bearer token via…

Preeti Islur
- 33
- 3
1
vote
0 answers
Can Azure APIM give fine grained control of access to individual FHIR API calls
I'm using Open Source FHIR Server on Azure. I have an Azure API Manager and all access to the FHIR server has to go through this. I want some users only to do GETs but others to do GET, PUT, POST etc. I expected to apply a Product to each call…

Hugh Glover
- 11
- 1
1
vote
1 answer
How to publish an Extension to Azure FHIR repository?
I am using Azure API for FHIR. I have a Claims payload that requires some additional fields, which I am adding to the extension structure like:
extension: [
{
"url": "ROW_ID",
"valueString": "1"
},
{
"url":…

aiman
- 1,049
- 19
- 57
1
vote
1 answer
Authentication error when requesting FHIR resource from Azure FHIR Services
I have deployed Healthcare Workspace and HFIR Service to Azure.
I successfully get capability statement and access token.
I'm failing with Get FHIR resource request to get Patient list by Postman.
I can see that this request connects to right App…

Kenny_I
- 2,001
- 5
- 40
- 94
1
vote
1 answer
401 when using client_credentials auth flow
Everything works great with Postman and authorization_code grant. But I am trying to connect to FHIR with client_credentials flow, meaning no UI.
I am calling the url…

Chris Auer
- 1,405
- 12
- 23
1
vote
1 answer
Why Azure FHIR server? Are there "technical" differences?
I have a general question related to the Azure FHIR server. Specifically, are there "technical" reasons to use it to store electronic health records (EHR)?
People told me major healthcare providers are using FHIR server to store EHR. I understand…

Joseph Chen
- 11
- 4
1
vote
0 answers
Azure API for FHIR and referential integrity
Does Azure API for FHIR apply referential integrity while creating, updating and patching FHIR resources?

RameshR
- 11
- 1
1
vote
0 answers
FHIR Server For Azure: Is there a way to return a specific resource without paging?
I have a FHIR Server For Azure implemented in a development environment. I need to provide a list with the latest 10 lab results for a given patient to a client application. I’ve been trying to get the data with a request like:
GET…

rodriguezrivas
- 11
- 1
1
vote
0 answers
Search criteria for identifier disappears
We have a Microsoft FHIR solution in production and we have just upgraded to Build 20200512-3. We are running Microsoft FHIR server on Cosmos in Azure and we have just switched on autoscale, and the database just made a new partition.
After these…

Ellen Gregusson
- 13
- 2
1
vote
1 answer
Bulk Import Request for FHIR
https://github.com/smart-on-fhir/bulk-import/blob/master/import.md
I used above link for reference and tried to run import using the following code
import requests
url = "https://.azurehealthcareapis.com/$import"
payload =…

srinath
- 2,748
- 6
- 35
- 56