Skip to content

Resend Activation Code

Resend activation code for a card tokenization
post/v1/tokenizations/{tokenization_token}/resend_activation_code

This endpoint is used to ask the card network to send another activation code to a cardholder that has already tried tokenizing a card. A successful response indicates that the request was successfully delivered to the card network. The endpoint may only be used on Mastercard digital wallet tokenizations with status INACTIVE, PENDING_ACTIVATION, or PENDING_2FA. The network will send a new activation code to the one of the contact methods provided in the initial tokenization flow. If a user fails to enter the code correctly 3 times, the contact method will not be eligible for resending the activation code, and the cardholder must restart the provision process. Reach out at lithic.com/contact for more information.

Path Parameters
tokenization_tokenstring
formatuuid
Body Parameters
activation_method_typeenum
optional
Accepts one of the following: "EMAIL_TO_CARDHOLDER_ADDRESS", "TEXT_TO_CARDHOLDER_NUMBER"

The communication method that the user has selected to use to receive the authentication code. Supported Values: Sms = "TEXT_TO_CARDHOLDER_NUMBER". Email = "EMAIL_TO_CARDHOLDER_ADDRESS"

Hide ParametersShow Parameters
"EMAIL_TO_CARDHOLDER_ADDRESS"
"TEXT_TO_CARDHOLDER_NUMBER"
Request example Request
curl https://api.lithic.com/v1/tokenizations/$TOKENIZATION_TOKEN/resend_activation_code \
    -H 'Content-Type: application/json' \
    -H "Authorization: $LITHIC_API_KEY"