Hi all,
At the moment, the UserClient
has four methods to retrieve user(s) and their information:
GetUserAsync()
GetUsersAsync()
GetUserResourcesAsync()
GetUserPictureAsync()
In the current state of the UserClient
it is not possible to use the SDK to create a new user.
The UI does this via the /api/user-management
endpoint and we would like to use this one too in the SDK to create users.
The request might look something like this:
public class CreateUserDto
{
public string Email { get; set; }
public string DisplayName { get; set; }
public string Password { get; set; }
public List<string> Permissions { get; set; } = new List<string>();
}