Resume Verification configuration
Setup resume verification
To continue interrupted verification in the MetaMap SDK, you should add verificationId
and identityId
as metadata parameters. These should be the verificationId
and identityId
of the interrupted verification.
For example:
val metadata = Metadata.Builder()
.identityId("YOUR_IDENTITY_ID")
.verificationId("YOUR_VERIFICATION_ID")
.build()
val button = findViewById<MetamapButton>(R.id.metamapButton)
button.setParams(this, "YOUR_CLIENT_ID", "YOUR_FLOW_ID", metadata);
Metadata metadata = new Metadata.Builder()
.identityId("YOUR_IDENTITY_ID")
.veridicationId("YOUR_VERIFICATION_ID")
.build();
MetamapButton button = findViewById(R.id.metamapButton);
button.setParams(this, "YOUR_CLIENT_ID", "YOUR_FLOW_ID", metadata);
Updated about 1 month ago