Update User Details

Catalyst allows you to modify and update the following details of an end-user:

  • First Name
  • Last name
  • ZAAID: ZAAID or Org ID, is a unique value that is generated by Catalyst to associate with an organization.
  • RoleID: Role ID is the value generated by Catalyst that is assigned to a particular user role.

Create a dictionary

    
copy
update_config= { "email_id": 'amelia.burrows@zylker.com', "last_name": 'Burrows', "first_name": 'Amelia' "zaaid": '1012585680', "role_id": '6759000000054065', }

The SDK snippet below demonstrates updating an end-user’s details using the update_user_details(userID, userDetails) method. The first name of the user is updated in the example below. The authentication_service reference used below is already defined in the component instance page.

    
copy
user_details=authentication_service.update_user_details('6759000000124659', update_config)

Last Updated 2023-12-18 16:20:08 +0530 +0530

ON THIS PAGE

RELATED LINKS

Authentication