Skip to main content
Tokenization replaces a raw card number with a reusable reference — a token prefixed with 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.
The response includes a token field alongside the normal payment fields:
Store this token against the shopper in your database. It is the only thing you need to charge them again.

2. Standalone Token Creation

Call POST /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.
The response returns the same token value (vt_...) without processing a charge.

Using a Token on Future Requests

Pass card.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 include card.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.
If you are running a subscription or an automated retry, omit the CVV — the shopper is not present to provide it.

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.
The resulting 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.
The response returns a 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.