Skip to content

Commit 59ffdc8

Browse files
incorp feedback from Ganesh
1 parent bc59f04 commit 59ffdc8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/healthcare-apis/fhir/use-postman.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: healthcare-apis
55
author: expekesheth
66
ms.service: healthcare-apis
77
ms.topic: tutorial
8-
ms.date: 04/10/2024
8+
ms.date: 04/16/2024
99
ms.author: kesheth
1010
---
1111

@@ -17,7 +17,7 @@ This article shows the steps to access the FHIR® service in Azure Health Dat
1717

1818
- **FHIR service deployed in Azure**. For more information, see [Deploy a FHIR service](fhir-portal-quickstart.md).
1919
- **A registered client application to access the FHIR service**. For more information, see [Register a service client application in Microsoft Entra ID](./../register-application.md).
20-
- **FHIR Data Contributor** permissions granted to the client application and your user account.
20+
- **FHIR Data Contributor permissions** granted to the client application and your user account.
2121
- **Postman installed locally**. For more information, see [Get Started with Postman](https://www.getpostman.com/).
2222

2323
## Create a workspace, collection, and environment
@@ -38,7 +38,7 @@ You can also import and export Postman collections. For more information, see [t
3838

3939
## Create or update environment variables
4040

41-
Although you can use the full URL in the request, we recommend that you store the URL and other data in variables and use them.
41+
Although you can use the full URL in the request, we recommend that you store the URL and other data in variables.
4242

4343
To access the FHIR service, you need to create or update these variables:
4444

@@ -57,7 +57,7 @@ To access the FHIR service, you need to create or update these variables:
5757
5858
:::image type="content" source="media/postman/postman-environments-variable.png" alt-text="Screenshot showing environments variable." lightbox="media/postman/postman-environments-variable.png":::
5959

60-
## Get capability statement
60+
## Get the capability statement
6161

6262
Enter `{{fhirurl}}/metadata` in the `GET`request, and then choose `Send`. You should see the capability statement of the FHIR service.
6363

@@ -69,9 +69,9 @@ Enter `{{fhirurl}}/metadata` in the `GET`request, and then choose `Send`. You sh
6969

7070
## Get a Microsoft Entra access token
7171

72-
You can get the Microsoft Entra access token by using either the Client Credential grant type, or a user account with the Authorization Code grant type. Choose one of the two methods.
72+
Get a Microsoft Entra access token by using a service principal or a Microsoft Entra user account. Choose one of the two methods.
7373

74-
### Get a Microsoft Entra access token by using Client Credential grant type
74+
### Use a service principal with a client credential grant type
7575

7676
The FHIR service is secured by Microsoft Entra ID. The default authentication can't be disabled. To access the FHIR service, you need to get a Microsoft Entra access token first. For more information, see [Microsoft identity platform access tokens](../../active-directory/develop/access-tokens.md).
7777

@@ -87,7 +87,7 @@ Create a new `POST` request:
8787
- **resource**: `{{fhirurl}}`
8888

8989
> [!NOTE]
90-
> In scenarios where the FHIR service audience parameter is not mapped to the FHIR service endpoint url. The resource parameter value should be mapped to Audience value under FHIR Service Authentication blade.
90+
> In scenarios where the FHIR service audience parameter isn't mapped to the FHIR service endpoint URL, the resource parameter value should be mapped to the audience value on the FHIR service **Authentication** pane.
9191
9292
3. Select the **Test** tab and enter in the text section: `pm.environment.set("bearerToken", pm.response.json().access_token);` To make the value available to the collection, use the pm.collectionVariables.set method. For more information on the set method and its scope level, see [Using variables in scripts](https://learning.postman.com/docs/sending-requests/variables/#defining-variables-in-scripts).
9393
4. Select **Save** to save the settings.
@@ -99,7 +99,7 @@ You can examine the access token using online tools such as [https://jwt.ms](htt
9999

100100
:::image type="content" source="media/postman/postman-access-token-claims.png" alt-text="Screenshot showing access token claims." lightbox="media/postman/postman-access-token-claims.png":::
101101

102-
## Get a Microsoft Entra access token by using a user account with Authorization Code grant type
102+
## Use a user account with the client credential grant type
103103

104104
You can get the Microsoft Entra access token by using your Entra account credentials and following the listed steps.
105105

0 commit comments

Comments
 (0)