You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/healthcare-apis/access-healthcare-apis.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
title: Access Azure Health Data Services
3
-
description: Learn how to access the FHIR, DICOM, and MedTech services in Azure Health Data Services by using Postman, cURL, REST Client, and programming languages like Python and C# for efficient data management.
3
+
description: Learn how to access the FHIR, DICOM, and MedTech services in Azure Health Data Services by using cURL, REST Client, and programming languages like Python and C# for efficient data management.
4
4
services: healthcare-apis
5
5
author: EXPEkesheth
6
6
ms.service: azure-health-data-services
@@ -13,11 +13,10 @@ ms.author: kesheth
13
13
14
14
# Access Azure Health Data Services
15
15
16
-
After you deploy a FHIR® service, DICOM® service, or MedTech service, you can then access it in your applications by using tools like Postman, cURL, REST Client in Visual Studio Code, or with programming languages such as Python or C#.
16
+
After you deploy a FHIR® service, DICOM® service, or MedTech service, you can then access it in your applications by using tools like cURL, REST Client in Visual Studio Code, or with programming languages such as Python or C#.
17
17
18
18
## Access the FHIR service
19
19
20
-
-[Access the FHIR service by using Postman](././fhir/use-postman.md)
21
20
-[Access the FHIR service by using cURL](././fhir/using-curl.md)
22
21
-[Access the FHIR service by using REST Client](././fhir/using-rest-client.md)
23
22
@@ -32,7 +31,6 @@ After you deploy a FHIR® service, DICOM® service, or MedTech service, yo
32
31
The MedTech service works with the IoT Hub and Event Hubs to receive message data, and works with the FHIR service to persist the data.
33
32
34
33
-[Receive device data through Azure IoT Hub](iot/device-data-through-iot-hub.md)
35
-
-[Access the FHIR service by using Postman](fhir/use-postman.md)
36
34
-[Access the FHIR service by using cURL](fhir/using-curl.md)
37
35
-[Access the FHIR service by using REST Client](fhir/using-rest-client.md)
In this article, you learned how to obtain an access token for the Azure API for FHIR using the Azure CLI. To learn how to access the FHIR API using Postman, proceed to the Postman tutorial:
38
+
In this article, you learned how to obtain an access token for the Azure API for FHIR using the Azure CLI. To learn how to access the FHIR API using REST Client:
39
39
40
40
>[!div class="nextstepaction"]
41
-
>[Access the FHIR service using Postman](./../fhir/use-postman.md)
41
+
>[Access the FHIR service using REST Client](./../fhir/using-rest-client.md)
Copy file name to clipboardExpand all lines: articles/healthcare-apis/fhir/azure-ad-b2c-setup.md
+19-33Lines changed: 19 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,7 +148,7 @@ The B2C resource application handles authentication requests from your healthcar
148
148
149
149
1. In the **Supported account types** list, choose **Accounts in any identity provider or organizational directory (for authenticating users with user flows)**.
150
150
151
-
1. In the **Redirect URI (recommended)** drop-down list, select ***Public client/native (mobile & desktop)**. Populate the value with the [Postman](https://www.postman.com)callback URI[https://oauth.pstmn.io/v1/callback](#create-a-new-b2c-resource-application). This callback URI is for testing purposes.
151
+
1. In the **Redirect URI (recommended)** drop-down list, select ***Public client/native (mobile & desktop)**. Populate the value with the callback URI. This callback URI is for testing purposes.
152
152
153
153
1. In the **Permissions** section, select **Grant admin consent to openid and offline_access permissions**.
154
154
@@ -295,13 +295,13 @@ az deployment group create --resource-group $resourcegroupname --template-uri ht
295
295
296
296
## Validate Azure AD B2C users are able to access FHIR resources
297
297
298
-
The validation process involves creating a patient resource in the FHIR service, linking the patient resource to the Azure AD B2C user, and configuring Postman to get an access token for B2C users. After the validation process is complete, you can fetch the patient resource by using the B2C test user.
298
+
The validation process involves creating a patient resource in the FHIR service, linking the patient resource to the Azure AD B2C user, and configuring REST Client to get an access token for B2C users. After the validation process is complete, you can fetch the patient resource by using the B2C test user.
299
299
300
-
#### Run Postman to get an access token
300
+
#### Use REST Client to get an access token
301
301
302
-
Run the [Postman](https://www.postman.com) application locally or in a web browser. For steps to obtain the proper access to the FHIR service, see [Access the FHIR service using Postman](use-postman.md).
302
+
For steps to obtain the proper access to the FHIR service, see [Access the FHIR service using REST Client](using-rest-client.md).
303
303
304
-
When you follow the steps in the [Get the FHIR resource](use-postman.md#get-the-fhir-resource) section, the request returns an empty response because the FHIR service is new and doesn't have any patient resources.
304
+
When you follow the steps in the [Get the FHIR patient data](using-rest-client.md#get-fhir-patient-data) section, the request returns an empty response because the FHIR service is new and doesn't have any patient resources.
305
305
306
306
#### Create a patient resource in the FHIR service
307
307
@@ -380,28 +380,24 @@ Create an explicit link between the test user in the B2C tenant and the resource
#### Fetch the patient resource by using the B2C user
434
428
435
429
Verify that Azure AD B2C users can access FHIR resources.
436
430
437
-
1. When the authorization configuration in Postman is set up to launch the B2C user flow, choose **Get New Access Token** to get an access token.
438
-
439
-
:::image type="content" source="media/azure-ad-b2c-setup/postman-get-token-3.png" alt-text="Screenshot showing Postman get access token." lightbox="media/azure-ad-b2c-setup/postman-get-token-3.png":::
431
+
1. When the authorization configuration is set up to launch the B2C user flow, choose **Get New Access Token** to get an access token.
440
432
441
433
1. Use the **Test Patient** credentials to sign in.
442
434
443
-
:::image type="content" source="media/azure-ad-b2c-setup/postman-get-token-2.png" alt-text="Screenshot showing Postman get token." lightbox="media/azure-ad-b2c-setup/postman-get-token-2.png":::
444
-
445
-
1. Choose **Use Token** to use the access token for any requests in the collection.
435
+
1. Copy the access token and use it in fetching the Patient data
446
436
447
-
:::image type="content" source="media/azure-ad-b2c-setup/postman-use-token.png" alt-text="Screenshot showing Postman use token." lightbox="media/azure-ad-b2c-setup/postman-use-token.png":::
437
+
Follow the steps in the [Get the FHIR patient data](using-rest-client.md#get-fhir-patient-data) to fetch the patient resource.
448
438
449
-
1. Create a new request to search for patient resources in the FHIR service. Select the ellipsis button (...) next to the name of the collection, and then choose **Add request**.
439
+
1. Set the method to `GET`, enter the fully qualified FHIR service URL, and then add the path `/Patient`.
Copy file name to clipboardExpand all lines: articles/healthcare-apis/fhir/convert-data-faq.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,11 +36,11 @@ There's an example published in the [Azure Data Factory template gallery](../../
36
36
>
37
37
> In a scenario with batch processing of HL7v2 messages, this template doesn't take sequencing into account. Post processing is needed if sequencing is a requirement.
38
38
39
-
## How can I persist the converted data into the FHIR service by using Postman?
39
+
## How can I persist the converted data into the FHIR service?
40
40
41
41
You can use the FHIR service's APIs to persist the converted data into the FHIR service by using `POST {{fhirUrl}}/{{FHIR resource type}}` with the request body containing the FHIR resource to be persisted in JSON format.
42
42
43
-
For more information, see [Access the FHIR service in Azure Health Data Services by using Postman](use-postman.md).
43
+
For more information, see [Access the FHIR service in Azure Health Data Services by using REST Client](using-rest-client.md).
44
44
45
45
## What's the difference between the $convert-data endpoint in Azure API for FHIR versus the FHIR service in Azure Health Data Services?
Copy file name to clipboardExpand all lines: articles/healthcare-apis/fhir/get-started-with-fhir.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,9 +57,9 @@ You can obtain a Microsoft Entra access token by using PowerShell, Azure CLI, RE
57
57
58
58
#### Access using existing tools
59
59
60
-
-[Postman](../fhir/use-postman.md)
61
60
-[REST Client](../fhir/using-rest-client.md)
62
61
-[cURL](../fhir/using-curl.md)
62
+
- There are tools available online offering intuitive interfaces for API testing and development such as Postman for example. To use tools for accessing the FHIR service, refer to the open-source sample. [Starter collection of Postman sample queries](https://github.com/Azure-Samples/azure-health-data-services-samples/tree/main/samples/sample-postman-queries)
Copy file name to clipboardExpand all lines: articles/healthcare-apis/fhir/migration-strategies.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ Migrate applications that were pointing to the old FHIR server.
98
98
99
99
- After migration, reconfigure any remaining settings in the new Azure Health Data Services FHIR service server.
100
100
101
-
- If you’d like to double check that the Azure Health Data Services FHIR service and Azure API for FHIR servers have the same configurations, you can check both [metadata endpoints](use-postman.md#get-the-capability-statement) to compare the two servers.
101
+
- If you’d like to double check that the Azure Health Data Services FHIR service and Azure API for FHIR servers have the same configurations, you can check both metadata endpoints to compare the two servers.
102
102
103
103
- Set up any jobs that were previously running in your old Azure API for FHIR server (for example, `$export` jobs)
Copy file name to clipboardExpand all lines: articles/healthcare-apis/fhir/smart-on-fhir.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ Add the reply URL to the public client application that you created previously f
105
105
106
106
### Step 3: Get a test patient
107
107
108
-
To test the FHIR service and the SMART on FHIR proxy, you need to have at least one patient in the database. If you've not used the API yet, and you don't have data in the database, see [Access the FHIR service using Postman](./../fhir/use-postman.md) to load a patient. Make a note of the ID of a specific patient.
108
+
To test the FHIR service and the SMART on FHIR proxy, you need to have at least one patient in the database. If you've not used the API yet, and you don't have data in the database, see [Access the FHIR service using REST Client](./../fhir/using-rest-client.md) to load a patient. Make a note of the ID of a specific patient.
109
109
110
110
### Step 4: Download the SMART on FHIR app launcher
0 commit comments