2
votes

I am using WSO2 Identity Server for usernames and password. I am using WSO2 SCIM APIs for updating/resetting the user's password using the PATCH. In the UI, the user has to enter the old password and new password. But while resetting the user's password, I have to first verify users current password. Is there an API to verify the password in WSO2?

1

1 Answers

3
votes

You can use getMe endpoint and act based on the response.

curl -v -k --user [username]:[password] https://localhost:9443/scim2/Me

Ref: https://docs.wso2.com/display/IS560/apidocs/SCIM2-endpoints/#!/operations#MeEndpoint#getUserMe