onCredentialsAvailableForUpdate
📌 Event: onCredentialsAvailableForUpdate
onCredentialsAvailableForUpdate
🔍 Purpose
This event is triggered after successful login or when the app invokes getAllChallenges()
to inform the app that certain credentials can be updated (e.g. password, security questions, pattern).
🧾 Sample Payload
{
"options": ["Password", "Pattern", "SecQA"]
}
Field | Type | Description |
---|---|---|
options | Array | List of credentials that can be updated |
🛠️ When is it Triggered?
- Automatically after
onUserLoggedIn
. - Manually after invoking
getAllChallenges()
.
🧠 Available Credential Types
Credential Name | Supported Platforms | Description |
---|---|---|
Password | Android, iOS | User login password |
Pattern | Android only | Device unlock pattern |
SecQA | Android, iOS | Security Question and Answer |
Updated 2 months ago