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
I know the way to update user's custom attributes is as follows: response = keycloak_admin.update_user(user_id="user-id-keycloak", payload={ 'attributes':{'birthdate':'14-03-2000'}})
How to delete user's custom attributes?
The text was updated successfully, but these errors were encountered:
I know the way to update user's custom attributes is as follows: response = keycloak_admin.update_user(user_id="user-id-keycloak", payload={ 'attributes':{'birthdate':'14-03-2000'}})
How to delete user's custom attributes?
Just omit them from the payload. The update_user method overwrites all previous attributes, so only the ones you are setting explicitly will be saved.
I know the way to update user's custom attributes is as follows:
response = keycloak_admin.update_user(user_id="user-id-keycloak", payload={ 'attributes':{'birthdate':'14-03-2000'}})
How to delete user's custom attributes?
The text was updated successfully, but these errors were encountered: