Skip to content

Commit 3f78090

Browse files
committed
formatting fixes
1 parent 79681d4 commit 3f78090

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

articles/communication-services/quickstarts/tpe/teams-phone-extensibility-access-teams-phone.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,18 @@ This article describes how to grant consent to a server to receive calls directe
3333
The Azure Communication Services Resource Owner needs to run the following API operations. The resource owner need to provide consent for authorizing calls to the Azure Communication Services Resource from the Teams Resource Account. You can call the API using any REST tool or programmatically. The API supports GET, PUT, PATCH, and DELETE operations.
3434

3535

36-
1. {YOUR-ACS-RESOURCE-ENDPOINT} in the request URI (RURI) path is the Azure Communication Services Resource fully qualified domain name (FQDN) from Azure.
37-
1. {YOUR-RESOURCE-ACCOUNT-GUID} parameter in the RURI, is the oid value returned by the Graph API from the previous step. Alternatively for one off manual provisioning, the [Get-CsOnlineApplicationInstance (MicrosoftTeamsPowerShell)](/powershell/module/teams/get-csonlineapplicationinstance) cmdlet returns the ObjectId and that ID is the YOUR-RESOURCE-ACCOUNT-GUID.
38-
1. The {TENANT-GUID} in the RURI path is the Teams Tenant GUID.
39-
1. The {principalType} in the body is `teamsResourceAccount` because we're consenting to a Teams Resource Account for Teams Phone Extensibility.
36+
1. The `{YOUR-ACS-RESOURCE-ENDPOINT}` in the request URI (RURI) path is the Azure Communication Services Resource fully qualified domain name (FQDN) from Azure.
37+
1. The `{YOUR-RESOURCE-ACCOUNT-GUID}` parameter in the RURI, is the oid value returned by the Graph API from the previous step. Alternatively for one off manual provisioning, the [Get-CsOnlineApplicationInstance (MicrosoftTeamsPowerShell)](/powershell/module/teams/get-csonlineapplicationinstance) cmdlet returns the `ObjectId` and that ID is the `YOUR-RESOURCE-ACCOUNT-GUID`.
38+
1. The `{TENANT-GUID}` in the RURI path is the Teams Tenant GUID.
39+
1. The `{principalType}` in the body is `teamsResourceAccount` because we're consenting to a Teams Resource Account for Teams Phone Extensibility.
4040

4141
This API supports Azure Communication Services hash-based message authentication code (HMAC) with a Connection String or Microsoft Entra ID Managed Identity.
4242

4343
Query definition:
4444

45-
> https://{YOUR-ACS-RESOURCE-ENDPOINT}/access/teamsExtension/tenants/{TENANT-GUID}/assignments/{YOUR-RESOURCE-ACCOUNT-GUID}?api-version=2025-03-02-preview
46-
45+
```http
46+
https://{YOUR-ACS-RESOURCE-ENDPOINT}/access/teamsExtension/tenants/{TENANT-GUID}/assignments/{YOUR-RESOURCE-ACCOUNT-GUID}?api-version=2025-03-02-preview
47+
```
4748

4849
Example to set consent:
4950

@@ -104,7 +105,7 @@ You must register your application for `TeamsExtension.ManageCalls` permission f
104105
3. From the **Add Permissions** menu, select **Azure Communication Services**.
105106
4. Select the permission `TeamsExtension.ManageCalls`, then select **Add permissions**.
106107

107-
:::image type="content" source="./media/active-directory-permissions.png" alt-text="Screen capture showing how to add TeamsExtension.ManageCalls permission to the Microsoft Entra application you just created." lightbox="./media/active-directory-permissions.png":::
108+
:::image type="content" source="media/active-directory-permissions.png" alt-text="Screen capture showing how to add TeamsExtension.ManageCalls permission to the Microsoft Entra ID application you just created." lightbox="media/active-directory-permissions.png":::
108109

109110
5. Grant admin consent for `TeamsExtension.ManageCalls` permission.
110111

articles/communication-services/quickstarts/tpe/teams-phone-extensibility-answer-teams-calls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ PUT {endpoint}/access/teamsExtension/tenants/87d349ed-44d7-43e1-9a83-5f2406dee5b
5454
}
5555
```
5656

57-
The {principalType} needs to be `teamsResourceAccount`.
57+
The `{principalType}` needs to be `teamsResourceAccount`.
5858

5959
### Response
6060

articles/communication-services/quickstarts/tpe/teams-phone-extensibility-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ Before you can create a bot, you need to register an Application ID.
3939

4040
1. From the Azure portal, open **App Registrations**.
4141

42-
:::image type="content" source="./media/teams-phone-extensibility-app-registration.png" alt-text="Screen capture showing the Azure portal with App registration selected from services." lightbox="./media/teams-phone-extensibility-app-registration.png":::
42+
:::image type="content" source="media/teams-phone-extensibility-app-registration.png" alt-text="Screen capture showing the Azure portal with App registration selected from services." lightbox="media/teams-phone-extensibility-app-registration.png":::
4343

4444
2. Select **New registration**.
4545
3. Complete the required fields and click **Register**.
4646
4. When the portal completes the resource, click **Go to resource**.
4747
5. Record the values for the **Application (client) ID** and **Directory (tenant) ID**.
4848

49-
:::image type="content" source="./media/teams-phone-extensibility-app-registration-resources.png" alt-text="Screen capture showing the Azure portal App registrations resource displaying Essentials including Application (client) ID and Directory (tenant) ID." lightbox="./media/teams-phone-extensibility-app-registration-resources.png":::
49+
:::image type="content" source="media/teams-phone-extensibility-app-registration-resources.png" alt-text="Screen capture showing the Azure portal App registrations resource displaying Essentials including Application (client) ID and Directory (tenant) ID." lightbox="media/teams-phone-extensibility-app-registration-resources.png":::
5050

5151
6. Open **Certificates & secrets**. Create new a client secret and record the certificate and secret ID values.
5252

0 commit comments

Comments
 (0)