Skip to content

Commit 2ed312a

Browse files
authored
Alt text and Acrolinx fixes
1 parent c0398a5 commit 2ed312a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/communication-services/quickstarts/call-automation/teams-interop-call-automation-quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ Tenant level setting that enables/disables federation between their tenant and s
4141
[Set-CsExternalAccessPolicy (SkypeForBusiness)](/powershell/module/skype/set-csexternalaccesspolicy)
4242
User policy that allows the admin to further control which users in their organization can participate in federated communications with ACS users.
4343

44-
## Step 2: Use the Graph API to get AAD object ID for Teams users and optionally check their presence
45-
A Teams user’s Azure Active Directory (AAD) object ID (OID) is required to add them to or transfer to them from an ACS call. The OID can be retrieved through 1) Office portal, 2) Azure AD portal, 3) Azure AD Connect; or 4) Graph API. The example below uses Graph API.
44+
## Step 2: Use the Graph API to get Azure AD object ID for Teams users and optionally check their presence
45+
A Teams user’s Azure Active Directory (Azure AD) object ID (OID) is required to add them to or transfer to them from an ACS call. The OID can be retrieved through 1) Office portal, 2) Azure AD portal, 3) Azure AD Connect; or 4) Graph API. The example below uses Graph API.
4646

47-
Consent must be granted by an AAD admin before Graph can be used to search for users, learn more by following on the [Microsoft Graph Security API overview](/graph/security-concept-overview) document. The OID can be retrieved using the list users API to search for users. The following shows a search by display name, but other properties can be searched as well:
47+
Consent must be granted by an Azure AD admin before Graph can be used to search for users, learn more by following on the [Microsoft Graph Security API overview](/graph/security-concept-overview) document. The OID can be retrieved using the list users API to search for users. The following shows a search by display name, but other properties can be searched as well:
4848

4949
[List users using Microsoft Graph v1.0](/graph/api/user-list):
5050
```rest
@@ -91,7 +91,7 @@ On the Microsoft Teams desktop client, Jack's call will be sent to the Microsoft
9191
![Screenshot of Microsoft Teams desktop client, Jack's call is sent to the Microsoft Teams user through an incoming call toast notification.](./media/incoming-call-toast-notification-teams-user.png)
9292

9393
After the Microsoft Teams user accepts the call, the in-call experience for the Microsoft Teams user will have all the participants displayed on the Microsoft Teams roster.
94-
![Screenshot of Microsoft Teams user accepting the call and entering the in-call experience for the Microsoft Teams user](./media/active-call-teams-user.png)
94+
![Screenshot of Microsoft Teams user accepting the call and entering the in-call experience for the Microsoft Teams user.](./media/active-call-teams-user.png)
9595

9696
## Step 4: Remove a Teams user from an existing ACS call controlled by Call Automation APIs
9797
```csharp
@@ -103,7 +103,7 @@ await answer.Value.CallConnection.RemoveParticipantAsync(new MicrosoftTeamsUserI
103103
await answer.Value.CallConnection.TransferCallToParticipantAsync(new CallInvite(new MicrosoftTeamsUserIdentifier('<Teams_User_Guid>')));
104104
```
105105
### How to tell if your Tenant isn't enabled for this preview?
106-
![You will receive this error during Step 1.](./media/teams-federation-error.png)
106+
![Screenshot showing the error during Step 1.](./media/teams-federation-error.png)
107107

108108
## Clean up resources
109109

0 commit comments

Comments
 (0)