API for expose username and password

Hi Folks,

I want to ask, I need camunda to integrate with other application but user management still in camunda. so I need to expose via API for user and password in the camunda?is it possible to do that?I’m searching in the this document

there’s no API for publish password information

Thanks for your help

@dimasrij Passwords are not meant to be published and not a good practice. :roll_eyes:

If you would like to validate the username & password for any user profile should probably utilize the IdentityService.

@Autowired
private IdentityService identityService;

boolean isValidUser = identityService.checkPassword("userId", "password");
1 Like