Skip to content

Commit facb660

Browse files
Merge pull request #211501 from DominikMe/communication-identifier-followup
Address feedback on title sentence casing from previous pr 209047
2 parents 979eb81 + 693cace commit facb660

File tree

8 files changed

+30
-30
lines changed

8 files changed

+30
-30
lines changed

articles/communication-services/concepts/identifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.subservice: identity
1414
zone_pivot_groups: acs-js-csharp-java-python-ios-android-rest
1515
---
1616

17-
# Understand Identifier types
17+
# Understand identifier types
1818

1919
Communication Services SDKs and REST APIs use the *identifier* type to identify who is communicating with whom. For example, identifiers specify who to call, or who has sent a chat message.
2020

articles/communication-services/concepts/includes/identifiers/identifiers-android.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: include file
1313
ms.author: domessin
1414
---
1515

16-
### Communication User identifier
16+
### Communication user
1717

1818
The `CommunicationUserIdentifier` represents a user identity that was created using the [Identity SDK or REST API](../../../quickstarts/access-tokens.md). It's the only identifier used if your application doesn't use Microsoft Teams interoperability or Telephony features.
1919

@@ -33,7 +33,7 @@ var sameUser = new CommunicationUserIdentifier(newUserId);
3333

3434
[CommunicationUserIdentifier](https://azure.github.io/azure-sdk-for-android/azure-communication-common/com/azure/android/communication/common/CommunicationUserIdentifier.html)
3535

36-
### Microsoft Teams User identifier
36+
### Microsoft Teams user
3737

3838
The `MicrosoftTeamsUserIdentifier` represents a Teams user with its Azure AD user object ID. You can retrieve the Azure AD user object ID via the [Microsoft Graph REST API /users](/graph/api/user-get) endpoint from the `id` property in the response. For more information on how to work with Microsoft Graph, try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer?request=users%2F%7Buser-mail%7D&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) and look into the [Graph SDK](/graph/sdks/sdks-overview). Alternatively, you can find the ID as the `oid` claim in an [Azure AD ID token](/azure/active-directory/develop/id-tokens#payload-claims) or [Azure AD access token](/azure/active-directory/develop/access-tokens#payload-claims) after your user has signed in and acquired a token.
3939

@@ -56,7 +56,7 @@ var gcchTeamsUser = new MicrosoftTeamsUserIdentifier(userId).setCloudEnvironment
5656

5757
[MicrosoftTeamsUserIdentifier](https://azure.github.io/azure-sdk-for-android/azure-communication-common/com/azure/android/communication/common/MicrosoftTeamsUserIdentifier.html)
5858

59-
### Phone Number identifier
59+
### Phone number
6060

6161
The `PhoneNumberIdentifier` represents a phone number. The service assumes that phone numbers are formatted in E.164 format.
6262

@@ -71,7 +71,7 @@ var phoneNumber = new PhoneNumberIdentifier("+112345556789");
7171

7272
[PhoneNumberIdentifier](https://azure.github.io/azure-sdk-for-android/azure-communication-common/com/azure/android/communication/common/PhoneNumberIdentifier.html)
7373

74-
### Unknown identifier
74+
### Unknown
7575

7676
The `UnknownIdentifier` exists for future-proofing and you might encounter it when you are on an old version of the SDK and a new identifier type has been introduced recently. Any unknown identifier from the service will be deserialized to the `UnknownIdentifier` in the SDK.
7777

articles/communication-services/concepts/includes/identifiers/identifiers-ios.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: include file
1313
ms.author: domessin
1414
---
1515

16-
### Communication User identifier
16+
### Communication user
1717

1818
The `CommunicationUserIdentifier` represents a user identity that was created using the [Identity SDK or REST API](../../../quickstarts/access-tokens.md). It's the only identifier used if your application doesn't use Microsoft Teams interoperability or Telephony features.
1919

@@ -31,7 +31,7 @@ let user = CommunicationUserIdentifier(newUserId)
3131

3232
[CommunicationUserIdentifier](https://azure.github.io/azure-sdk-for-ios/AzureCommunicationCommon/Classes/CommunicationUserIdentifier.html)
3333

34-
### Microsoft Teams User identifier
34+
### Microsoft Teams user
3535

3636
The `MicrosoftTeamsUserIdentifier` represents a Teams user with its Azure AD user object ID. You can retrieve the Azure AD user object ID via the [Microsoft Graph REST API /users](/graph/api/user-get) endpoint from the `id` property in the response. For more information on how to work with Microsoft Graph, try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer?request=users%2F%7Buser-mail%7D&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) and look into the [Graph SDK](/graph/sdks/sdks-overview). Alternatively, you can find the ID as the `oid` claim in an [Azure AD ID token](/azure/active-directory/develop/id-tokens#payload-claims) or [Azure AD access token](/azure/active-directory/develop/access-tokens#payload-claims) after your user has signed in and acquired a token.
3737

@@ -52,7 +52,7 @@ gcchTeamsUser = MicrosoftTeamsUserIdentifier(userId: userId, cloud: Communicatio
5252

5353
[MicrosoftTeamsUserIdentifier](https://azure.github.io/azure-sdk-for-ios/AzureCommunicationCommon/Classes/MicrosoftTeamsUserIdentifier.html)
5454

55-
### Phone Number identifier
55+
### Phone number
5656

5757
The `PhoneNumberIdentifier` represents a phone number. The service assumes that phone numbers are formatted in E.164 format.
5858

@@ -67,7 +67,7 @@ let phoneNumber = PhoneNumberIdentifier(phoneNumber: "+112345556789")
6767

6868
[PhoneNumberIdentifier](https://azure.github.io/azure-sdk-for-ios/AzureCommunicationCommon/Classes/PhoneNumberIdentifier.html)
6969

70-
### Unknown identifier
70+
### Unknown
7171

7272
The `UnknownIdentifier` exists for future-proofing and you might encounter it when you are on an old version of the SDK and a new identifier type has been introduced recently. Any unknown identifier from the service will be deserialized to the `UnknownIdentifier` in the SDK.
7373

articles/communication-services/concepts/includes/identifiers/identifiers-java.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: include file
1313
ms.author: domessin
1414
---
1515

16-
### Communication User identifier
16+
### Communication user
1717

1818
The `CommunicationUserIdentifier` represents a user identity that was created using the [Identity SDK or REST API](../../../quickstarts/access-tokens.md). It's the only identifier used if your application doesn't use Microsoft Teams interoperability or Telephony features.
1919

@@ -33,7 +33,7 @@ var sameUser = new CommunicationUserIdentifier(newUserId);
3333

3434
[CommunicationUserIdentifier](/java/api/com.azure.communication.common.communicationuseridentifier)
3535

36-
### Microsoft Teams User identifier
36+
### Microsoft Teams user
3737

3838
The `MicrosoftTeamsUserIdentifier` represents a Teams user with its Azure AD user object ID. You can retrieve the Azure AD user object ID via the [Microsoft Graph REST API /users](/graph/api/user-get) endpoint from the `id` property in the response. For more information on how to work with Microsoft Graph, try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer?request=users%2F%7Buser-mail%7D&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) and look into the [Graph SDK](/graph/sdks/sdks-overview). Alternatively, you can find the ID as the `oid` claim in an [Azure AD ID token](/azure/active-directory/develop/id-tokens#payload-claims) or [Azure AD access token](/azure/active-directory/develop/access-tokens#payload-claims) after your user has signed in and acquired a token.
3939

@@ -56,7 +56,7 @@ var gcchTeamsUser = new MicrosoftTeamsUserIdentifier(userId).setCloudEnvironment
5656

5757
[MicrosoftTeamsUserIdentifier](/java/api/com.azure.communication.common.microsoftteamsuseridentifier)
5858

59-
### Phone Number identifier
59+
### Phone number
6060

6161
The `PhoneNumberIdentifier` represents a phone number. The service assumes that phone numbers are formatted in E.164 format.
6262

@@ -71,7 +71,7 @@ var phoneNumber = new PhoneNumberIdentifier("+112345556789");
7171

7272
[PhoneNumberIdentifier](/java/api/com.azure.communication.common.phonenumberidentifier)
7373

74-
### Unknown identifier
74+
### Unknown
7575

7676
The `UnknownIdentifier` exists for future-proofing and you might encounter it when you are on an old version of the SDK and a new identifier type has been introduced recently. Any unknown identifier from the service will be deserialized to the `UnknownIdentifier` in the SDK.
7777

articles/communication-services/concepts/includes/identifiers/identifiers-js.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: include file
1313
ms.author: domessin
1414
---
1515

16-
### Communication User identifier
16+
### Communication user
1717

1818
The `CommunicationUserIdentifier` interface represents a user identity that was created using the [Identity SDK or REST API](../../../quickstarts/access-tokens.md). It's the only identifier used if your application doesn't use Microsoft Teams interoperability or Telephony features.
1919

@@ -33,7 +33,7 @@ const sameUser = { communicationUserId: newUserId };
3333

3434
[CommunicationUserIdentifier](/javascript/api/@azure/communication-common/communicationuseridentifier)
3535

36-
### Microsoft Teams User identifier
36+
### Microsoft Teams user
3737

3838
The `MicrosoftTeamsUserIdentifier` interface represents a Teams user with its Azure AD user object ID. You can retrieve the Azure AD user object ID via the [Microsoft Graph REST API /users](/graph/api/user-get) endpoint from the `id` property in the response. For more information on how to work with Microsoft Graph, try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer?request=users%2F%7Buser-mail%7D&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) and look into the [Graph SDK](/graph/sdks/sdks-overview). Alternatively, you can find the ID as the `oid` claim in an [Azure AD ID token](/azure/active-directory/develop/id-tokens#payload-claims) or [Azure AD access token](/azure/active-directory/develop/access-tokens#payload-claims) after your user has signed in and acquired a token.
3939

@@ -54,7 +54,7 @@ const gcchTeamsUser = { microsoftTeamsUserId: userId, cloud: "gcch" };
5454

5555
[MicrosoftTeamsUserIdentifier](/javascript/api/@azure/communication-common/microsoftteamsuseridentifier)
5656

57-
### Phone Number identifier
57+
### Phone number
5858

5959
The `PhoneNumberIdentifier` interface represents a phone number. The service assumes that phone numbers are formatted in E.164 format.
6060

@@ -69,7 +69,7 @@ const phoneNumber = { phoneNumber: "+112345556789" };
6969

7070
[PhoneNumberIdentifier](/javascript/api/@azure/communication-common/phonenumberidentifier)
7171

72-
### Unknown identifier
72+
### Unknown
7373

7474
The `UnknownIdentifier` interface exists for future-proofing and you might encounter it when you are on an old version of the SDK and a new identifier type has been introduced recently. Any unknown identifier from the service will be deserialized to the `UnknownIdentifier` in the SDK.
7575

articles/communication-services/concepts/includes/identifiers/identifiers-net.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: include file
1313
ms.author: domessin
1414
---
1515

16-
### Communication User identifier
16+
### Communication user
1717

1818
The `CommunicationUserIdentifier` represents a user identity that was created using the [Identity SDK or REST API](../../../quickstarts/access-tokens.md). It's the only identifier used if your application doesn't use Microsoft Teams interoperability or Telephony features.
1919

@@ -33,7 +33,7 @@ var sameUser = new CommunicationUserIdentifier(newUserId);
3333

3434
[CommunicationUserIdentifier](/dotnet/api/azure.communication.communicationuseridentifier)
3535

36-
### Microsoft Teams User identifier
36+
### Microsoft Teams user
3737

3838
The `MicrosoftTeamsUserIdentifier` represents a Teams user with its Azure AD user object ID. You can retrieve the Azure AD user object ID via the [Microsoft Graph REST API /users](/graph/api/user-get) endpoint from the `id` property in the response. For more information on how to work with Microsoft Graph, try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer?request=users%2F%7Buser-mail%7D&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) and look into the [Graph SDK](/graph/sdks/sdks-overview). Alternatively, you can find the ID as the `oid` claim in an [Azure AD ID token](/azure/active-directory/develop/id-tokens#payload-claims) or [Azure AD access token](/azure/active-directory/develop/access-tokens#payload-claims) after your user has signed in and acquired a token.
3939

@@ -56,7 +56,7 @@ var gcchTeamsUser = new MicrosoftTeamsUserIdentifier(userId: userId, cloud: Comm
5656

5757
[MicrosoftTeamsUserIdentifier](/dotnet/api/azure.communication.microsoftteamsuseridentifier)
5858

59-
### Phone Number identifier
59+
### Phone number
6060

6161
The `PhoneNumberIdentifier` represents a phone number. The service assumes that phone numbers are formatted in E.164 format.
6262

@@ -71,7 +71,7 @@ var phoneNumber = new PhoneNumberIdentifier("+112345556789");
7171

7272
[PhoneNumberIdentifier](/dotnet/api/azure.communication.phonenumberidentifier)
7373

74-
### Unknown identifier
74+
### Unknown
7575

7676
The `UnknownIdentifier` exists for future-proofing and you might encounter it when you are on an old version of the SDK and a new identifier type has been introduced recently. Any unknown identifier from the service will be deserialized to the `UnknownIdentifier` in the SDK.
7777

articles/communication-services/concepts/includes/identifiers/identifiers-python.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: include file
1313
ms.author: domessin
1414
---
1515

16-
### Communication User identifier
16+
### Communication user
1717

1818
The `CommunicationUserIdentifier` represents a user identity that was created using the [Identity SDK or REST API](../../../quickstarts/access-tokens.md). It's the only identifier used if your application doesn't use Microsoft Teams interoperability or Telephony features.
1919

@@ -33,7 +33,7 @@ same_user = CommunicationUserIdentifier(new_user_id)
3333

3434
[CommunicationUserIdentifier](/python/api/azure-communication-chat/azure.communication.chat.communicationuseridentifier)
3535

36-
### Microsoft Teams User identifier
36+
### Microsoft Teams user
3737

3838
The `MicrosoftTeamsUserIdentifier` represents a Teams user with its Azure AD user object ID. You can retrieve the Azure AD user object ID via the [Microsoft Graph REST API /users](/graph/api/user-get) endpoint from the `id` property in the response. For more information on how to work with Microsoft Graph, try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer?request=users%2F%7Buser-mail%7D&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) and look into the [Graph SDK](/graph/sdks/sdks-overview). Alternatively, you can find the ID as the `oid` claim in an [Azure AD ID token](/azure/active-directory/develop/id-tokens#payload-claims) or [Azure AD access token](/azure/active-directory/develop/access-tokens#payload-claims) after your user has signed in and acquired a token.
3939

@@ -54,7 +54,7 @@ gcch_teams_user = MicrosoftTeamsUserIdentifier(user_id, cloud=CommunicationCloud
5454

5555
[MicrosoftTeamsUserIdentifier](/python/api/azure-communication-chat/azure.communication.chat.microsoftteamsuseridentifier)
5656

57-
### Phone Number identifier
57+
### Phone number
5858

5959
The `PhoneNumberIdentifier` represents a phone number. The service assumes that phone numbers are formatted in E.164 format.
6060

@@ -69,7 +69,7 @@ phone_number = PhoneNumberIdentifier("+112345556789")
6969

7070
[PhoneNumberIdentifier](/python/api/azure-communication-chat/azure.communication.chat.phonenumberidentifier)
7171

72-
### Unknown identifier
72+
### Unknown
7373

7474
The `UnknownIdentifier` exists for future-proofing and you might encounter it when you are on an old version of the SDK and a new identifier type has been introduced recently. Any unknown identifier from the service will be deserialized to the `UnknownIdentifier` in the SDK.
7575

articles/communication-services/concepts/includes/identifiers/identifiers-rest.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.author: domessin
1515

1616
In REST APIs, the identifier is a polymorphic type: you construct a JSON object and a property that maps to a concrete identifier subtype. For convenience and backwards-compatibility reasons, the `kind` and `rawId` properties are optional in requests but get populated in service responses.
1717

18-
### Communication User identifier
18+
### Communication user
1919

2020
The `CommunicationUserIdentifierModel` represents a user identity that was created using the [Identity SDK or REST API](../../../quickstarts/access-tokens.md). It's the only identifier used if your application doesn't use Microsoft Teams interoperability or Telephony features.
2121

@@ -48,7 +48,7 @@ You can find an example for a request that includes an identifier in Chat's REST
4848

4949
[CommunicationUserIdentifierModel](https://github.com/Azure/azure-rest-api-specs/blob/c1883ee5b87c41dfcb699420409bc0e31cff0786/specification/communication/data-plane/Common/stable/2022-07-13/common.json#L113)
5050

51-
### Microsoft Teams User identifier
51+
### Microsoft Teams user
5252

5353
The `MicrosoftTeamsUserIdentifierModel` represents a Teams user with its Azure AD user object ID. You can retrieve the Azure AD user object ID via the [Microsoft Graph REST API /users](/graph/api/user-get) endpoint from the `id` property in the response. For more information on how to work with Microsoft Graph, try the [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer?request=users%2F%7Buser-mail%7D&method=GET&version=v1.0&GraphUrl=https://graph.microsoft.com) and look into the [Graph SDK](/graph/sdks/sdks-overview). Alternatively, you can find the ID as the `oid` claim in an [Azure AD ID token](/azure/active-directory/develop/id-tokens#payload-claims) or [Azure AD access token](/azure/active-directory/develop/access-tokens#payload-claims) after your user has signed in and acquired a token.
5454

@@ -96,7 +96,7 @@ The `MicrosoftTeamsUserIdentifierModel` represents a Teams user with its Azure A
9696

9797
[MicrosoftTeamsUserIdentifierModel](https://github.com/Azure/azure-rest-api-specs/blob/c1883ee5b87c41dfcb699420409bc0e31cff0786/specification/communication/data-plane/Common/stable/2022-07-13/common.json#L139)
9898

99-
### Phone Number identifier
99+
### Phone number
100100

101101
The `PhoneNumberIdentifierModel` represents a phone number. The service assumes that phone numbers are formatted in E.164 format.
102102

@@ -124,7 +124,7 @@ The `PhoneNumberIdentifierModel` represents a phone number. The service assumes
124124

125125
[PhoneNumberIdentifierModel](https://github.com/Azure/azure-rest-api-specs/blob/c1883ee5b87c41dfcb699420409bc0e31cff0786/specification/communication/data-plane/Common/stable/2022-07-13/common.json#L126)
126126

127-
### Unknown identifier
127+
### Unknown
128128

129129
If a new identifier gets introduced in a service, it will get downgraded to the `CommunicationIdentifierModel` if you are on an old API version.
130130

@@ -273,7 +273,7 @@ The raw ID is the Teams visitor ID prefixed with `8:teamsvisitor:`. The Teams vi
273273

274274
The raw ID is the E.164 formatted phone number without the leading `+` and prefixed with `4:`.
275275

276-
### Unknown identifier
276+
### Unknown
277277

278278
*Identifier:*
279279
```json

0 commit comments

Comments
 (0)