You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: workos/user_management.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,7 @@ def update_user(
207
207
self,
208
208
*,
209
209
user_id: str,
210
+
email: Optional[str] =None,
210
211
first_name: Optional[str] =None,
211
212
last_name: Optional[str] =None,
212
213
email_verified: Optional[bool] =None,
@@ -222,6 +223,7 @@ def update_user(
222
223
user_id (str): The User unique identifier
223
224
first_name (str): The user's first name. (Optional)
224
225
last_name (str): The user's last name. (Optional)
226
+
email (str): The user's email. (Optional)
225
227
email_verified (bool): Whether the user's email address was previously verified. (Optional)
226
228
password (str): The password to set for the user. (Optional)
227
229
password_hash (str): The hashed password to set for the user, used when migrating from another user store. Mutually exclusive with password. (Optional)
0 commit comments