Skip to content

Commit 55096f6

Browse files
Stefan GilcaStefan Gilca
authored andcommitted
Fix rendering + remove unused variables
1 parent 55b2774 commit 55096f6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

articles/communication-services/concepts/identity-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Managing a mapping between Azure Communication Services user identities and your
3636
> [!IMPORTANT]
3737
> This feature is available starting with the Identity SDK version `1.4.0-beta1` and REST API version `2025-03-02-preview`.
3838
39-
> [!NOTE]
39+
> [!NOTE]
4040
> This feature is currently in preview.
4141
4242
Previously, developers were responsible for maintaining a mapping between their own user identity system and Azure Communication Services identities. With the introduction of the `customId` parameter, you can now associate your own user identifiers—such as email addresses or internal user IDs—directly when creating a Communication Services identity.

articles/communication-services/quickstarts/identity/includes/access-tokens/access-token-js.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ console.log(`\nCreated an identity with ID: ${user.communicationUserId}`);
134134

135135
## (Preview) Get identity details
136136

137-
> [!IMPORTANT] 
137+
> [!IMPORTANT]
138138
> This feature is available starting with the SDK version `1.4.0-beta1`.
139139

140-
> [!NOTE] 
140+
> [!NOTE]
141141
> This feature is currently in preview.
142142

143143
You can use the `getUserDetail` method to retrieve information about a user, including the `customId` and the `lastTokenIssuedAt`.
@@ -195,10 +195,10 @@ console.log(token);
195195

196196
### (Preview) Create an identity and issue a token in one method call including a customId
197197

198-
> [!IMPORTANT] 
198+
> [!IMPORTANT]
199199
> This feature is available starting with the SDK version `1.4.0-beta1`.
200200

201-
> [!NOTE] 
201+
> [!NOTE]
202202
> This feature is currently in preview.
203203

204204
You can pass your custom ID to the `createUserAndToken` method to create an identity and issue an access token in a single call.

articles/communication-services/quickstarts/identity/includes/access-tokens/access-token-net.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ Store the received identity with mapping to your application users (for example,
124124

125125
## (Preview) Create an identity with an associated customId
126126

127-
> [!IMPORTANT] 
127+
> [!IMPORTANT]
128128
> This feature is available starting with the SDK version `1.4.0-beta1`.
129129
130-
> [!NOTE] 
130+
> [!NOTE]
131131
> This feature is currently in preview.
132132
133133
You can create an identity with an associated `customId` to map your application's user identities with Azure Communication Services identities. If you call the `CreateUser` method again with the same `customId`, it will return the same `user.Id`. This eliminates the need to store the mapping yourself.
@@ -139,10 +139,10 @@ Console.WriteLine($"\nCreated an identity with ID: {user.Id}");
139139

140140
## (Preview) Get identity details
141141

142-
> [!IMPORTANT] 
142+
> [!IMPORTANT]
143143
> This feature is available starting with the SDK version `1.4.0-beta1`.
144144
145-
> [!NOTE] 
145+
> [!NOTE]
146146
> This feature is currently in preview.
147147
148148
You can use the `GetUserDetail` method to retrieve information about a user, including the `customId` and the `lastTokenIssuedAt`.

0 commit comments

Comments
 (0)