Core Function
Card-related functions for activation, PIN management, and retrieving card details.
| Widget Name | Purpose | 
|---|---|
| activate_card | Activates a new card. | 
| set_pin | Allows users to set a new PIN for their card. | 
| get_pin | Retrieves the PIN, which is masked after a set time for security. | 
| show_pan | Displays the card number (PAN) securely within the widget. | 
| cvv_only | Shows only the CVV code for authentication purposes. | 
| copy_to_clipboard | Allow users to copy to the clipboard | 
Widget for Updating PIN
widget = {
    config: {
        token: "your-secure-token",
        main: "get_pin"
    }
}; 
Widget for PIN Display
widget = {
    config: {
        token: "your-secure-token",
        main: "get_pin"
    }
}; 
Widget for PAN Display
widget = {
    config: {
        token: "your-secure-token",
        main: "show_pan"
    }
}; 
Widget for CVV Display
widget = {
    config: {
        token: "your-secure-token",
        main: "cvv_only"
    }
};
Updated about 2 months ago
