vt_ — that Therius stores securely in its vault. Once a card is tokenized, you never need to collect the card details again. Tokens are scoped to your merchant account, carry BIN metadata (card brand, type, and issuer), and work on any future purchase or authorization call exactly like the original card data.
Two Ways to Tokenize
1. During a Payment
Add"tokenize": true inside card.cardData (or card.nonceData if using the JS SDK nonce flow), and include a shopper.id to associate the token with a specific customer. The payment processes normally, and the response includes the new token.
token field alongside the normal payment fields:
2. Standalone Token Creation
CallPOST /token to store one or more cards as tokens without making a payment. This is useful during account setup flows where you want to save a card on file before the first purchase.
token value (vt_...) without processing a charge.
Using a Token on Future Requests
Passcard.tokenData.token instead of card.cardData on any subsequent purchase or authorization. The request shape and the response shape are identical to a normal payment.
CVV on Tokenized Cards
You can optionally includecard.tokenData.cvv when charging a token. Some acquirers require the CVV for cardholder-initiated transactions (CIT) but not for merchant-initiated transactions (MIT) or recurring charges.
Wallet Tokenization
Apple Pay and Google Pay payment methods can also be saved for recurring use. Add"tokenize": true and a shopper.id inside the walletData object.
vt_... token behaves identically to a card token on future requests.
ACH Tokenization
Bank account details submitted via ACH can be tokenized the same way. Add"tokenize": true inside the apm object.
vt_... token you can use on future ACH charges without asking the shopper for their bank details again.
Security
Therius tokens are PCI-safe. A
vt_... token is usable only within the Therius vault and only by your merchant account. It cannot be used to retrieve the raw card number, and it is not accepted by any external payment system. Storing tokens instead of card data means your database is out of scope for PCI DSS requirements related to PANs.
