Customization

Display a saved payment methodAnchorIcon

If you pass a customer_id when generating a client token, Drop-in will display that customer's saved payment methods and automatically add any newly-entered payment methods to their Vault record.

Delete a saved payment methodAnchorIcon

If you authorize Drop-in using client tokens generated with customer_ids, you can also enable customers to remove saved payment methods from their Vault records. To support this functionality, enable Drop-in's Vault Manager:

  1. Java
  2. Kotlin
DropInRequest request = new DropInRequest();
request.setVaultManagerEnabled(true);

Drop-in will then display an edit button which launches the Vault Manager.

Drop-in,web,payment,deletion,screenshot

Collect cardholder nameAnchorIcon

You can collect the cardholder name as part of the credit card form. This field can be marked as optional or required.

  1. Android
  2. Kotlin
DropInRequest request = new DropInRequest();
request.setCardHolderNameStatus(CardForm.FIELD_OPTIONAL); 
// To make the field required 
// request.setCardHolderNameStatus(CardForm.FIELD_REQUIRED);

Premium Fraud Management ToolsAnchorIcon

To use Premium Fraud Management Tools for your Drop-in form, you'll need to complete these 3 steps at the same time:

  1. Enable Premium Fraud Management Tools in the Control Panel
  2. Update your client-side integration to collect device data
  3. Update your server-side integration to pass device data on transaction and verification requests

If there is any delay between enabling in the Control Panel and making the code changes, the integration will not work properly. See the Premium Fraud Management Tools guide for more details.