diff --git a/docs/I version 2.x/entities/users.md b/docs/I version 2.x/entities/users.md index 7249cc5..f5f4904 100644 --- a/docs/I version 2.x/entities/users.md +++ b/docs/I version 2.x/entities/users.md @@ -72,4 +72,14 @@ if (await client.IsValidJWTokenAsync()) //second param - user to reassign all content var result = await client.Users.DeleteAsync(123,321); } -``` \ No newline at end of file +``` + +## Create Application Password + +```C# +// Create an application password for the current user +var password = await client.Users.CreateApplicationPasswordAsync("application-name"); + +// Create an application password for a specific user +var password = await client.Users.CreateApplicationPasswordAsync("application-name", userId: "3"); +```