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 27 days ago
