onIDVKYCProgress
š Event: onIDVKYCProgress
onIDVKYCProgressš Description
onIDVKYCProgress is a callback event invoked by the REL-ID SDK during the silent KYC challenge as part of the pre-login flow. It provides progress updates to the application to help track the backend KYC processing stages.
š§Ŗ When Itās Triggered
- During pre-login activation when a silent KYC challenge (e.g.
IDVActivatedCustomerKYC) is active. - Each invocation reports the latest stage of document/selfie validation or third-party checks.
š§āš» Platform Support
| Platform | Registration Method |
|---|---|
| React Native | EventEmitter.addListener('onIDVKYCProgress', onIDVKYCProgress) |
| Flutter | rdna.on(RdnaClient.onIDVKYCProgress, onIDVKYCProgress) |
| Cordova | document.addEventListener('onIDVKYCProgress', this.onIDVKYCProgress.bind(this), false) |
| Native iOS | (void)onIDVKYCProgress:(NSString *)status; |
| Native Android | void onIDVKYCProgess(String progressList); |
š¤ Response Format
{
"kyc_message": [
"Verifying with credstore 1",
"Verifying with credstore 2",
"Verifying with credstore 3"
]
}š Parameters
| Field | Type | Description |
|---|---|---|
kyc_message | string[] | List of progress messages during KYC workflow |
š Notes
- Use this event to show a real-time progress bar or log updates in the UI.
- The KYC flow might emit multiple messages depending on backend processing stages.
Updated 4 months ago
