Add new field to users profile or change data model for user profile

Hi guys,
Users in camunda have four fields: ID, firstName, lastName, email
How can I add a new field like phoneNumber?

Maybe I am wrong but I think you have to use LDAP for this. Have a look at the sql-create-scripts. In the ACT_ID_USER relation there are no attributes for additional data and no other relations that can be used for that matter.

2 Likes

You can implement a custom authentication; there you can put any attributes you want into the user object. Camunda will just use some of them but your code can downcast the object to your type and use all of them.

1 Like

Thank you for your answer, I will try this answer.

Thanks very much ,i must try this solution.