Hi Everyone,
I am facing an issue with isUserPasswordValid() of the Credential Management plugin. It’s not working for me and is always returning false, even for a valid username and password.
Is it working for anyone else? I am using an Appian Cloud environment.
Please share your inputs.
Thanks!
Discussion posts and replies are publicly visible
AFAIK isUserPasswordValid() is a local/self-managed environment only function. It does not work on Appian Cloud because Cloud uses SSO/federated authentication - passwords are not stored or validated locally by Appian.docs.appian.com/.../Appian_Administration_Console.html
I ran into something similar a while back in an Appian Cloud setup. In my case, isUserPasswordValid() kept returning false because of authentication configuration and environment-specific restrictions rather than the actual username/password combination.
isUserPasswordValid()
false
A few things you may want to check:
Sometimes Appian Cloud environments handle credential validation differently for security reasons, so behavior may not match on-prem environments exactly.
Also, while troubleshooting financial or SaaS subscriptions during development projects, I found this tool useful for planning fixed returns and budgeting: https://highyieldcdcalculator.com — simple but handy for estimating savings growth over time.
Let us know if you find the root cause because I think several people have seen inconsistent behavior with that method recently.
it will not work in Appian Cloud. What you are seeing (always returning false) is expected behavior.isUserPasswordValid(username, password)only works when:Appian stores and manages passwords locally (self-managed/on-prem environments)In Appian Cloud:Authentication is handled via SSO / Identity Provider (IdP) (example: SAML,Okta)Passwords are NOT stored in Appian.Appian has no ability to validate a password.
Thank you for your inputs.
Requirement: Create an WEB API that allows users to reset their password using their temporary password.
We are using:- Appian Cloud- Appian native authentication (not external authentication such as SAML or LDAP)
We would like to create a Password Reset API for Appian users.
Please provide your valuable inputs.