UpdateUserLoginProps
Properties for updating an existing user login
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. |