You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x
UpdateUserLoginProps
Properties for updating an existing user login
export interface UpdateUserLoginProps extends BaseUserId {
newLogin: string;
password: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
newLogin | Required | string | The new login to be set. It has to be a valid email address. |
password | Required | string | The password of the user required for verification. |