Cooldown
In order to use the SDK cooldown feature you need to:
- Activate the feature in metamap(flow) settings on dashboard
- Pass one of the following keys or your custom key(if such was set in the dashboard) to the Metadata like in the example below:
phoneNumber
email
documentNumber
val metadata = Metadata.Builder()
.additionalData("phoneNumber" "user_phone_number")
.build()
val button = findViewById<MetamapButton>(R.id.metamapButton)
button.setParams(this, "YOUR_CLIENT_ID", "YOUR_FLOW_ID", metadata)
Metadata metadata = new Metadata.Builder()
.additionalData("phoneNumber" "user_phone_number")
.build();
MetamapButton button = findViewById(R.id.metamapButton);
button.setParams(this, "CLIENT_ID", "YFLOW_ID", metadata);
Updated 12 months ago
What’s Next
Having Troubles? Please visit Troubleshoot section or check out our demo apps.