Yuno tokenization coverage
Yuno’s tokenization platform is not limited to cards. Tokens are issued for any payment method flowing through Yuno, including:- Credit and debit cards
- Digital wallets such as Apple Pay, Google Pay, and Click to Pay
- Bank transfers and local payment methods including ACH, PIX, and regional alternatives
- Alternative payment methods for buy-now-pay-later, vouchers, and more
Token types
Yuno issues three types of tokens, each suited to a different integration scenario.One-time use token
When using Yuno’s SDK, all necessary payment information is gathered and stored in a one-time use token scoped to a single checkout session. This token is used once when creating the payment and cannot be reused. One-time tokens are the right choice for:- Guest checkouts with no stored payment method
- Single-use transactions where vaulting is not required
Vault on successSet
vault_on_success: true in the token request to automatically enroll and vault the payment method if the payment succeeds. This converts a one-time token into a persistent vaulted token without a separate enrollment step.Vaulted token
A vaulted token is created when a payment method is enrolled and securely stored in Yuno’s centralized vault alongside the customer’s information. You can use the vaulted token to authorize future payments without the customer re-entering their details. Vaulted tokens are the right choice for:- Returning customers with saved payment methods
- Subscriptions and recurring billing
- One-click checkout flows
Network token
A network token is a digitized representation of a card’s Primary Account Number (PAN), issued directly by card networks such as Visa, Mastercard, or American Express. When network tokenization is enabled, Yuno automatically provisions and manages network tokens for all enrolled cards and substitutes them for the actual card data during authorization. Network tokens are the right choice for:- High-value recurring transactions where maximizing authorization rates matters
- Scenarios requiring enhanced fraud protection at the network level
Learn moreFor a full overview of network tokens, lifecycle statuses, and integration options, see Network Tokens.
Token comparison
| One-time use token | Vaulted token | Network token | |
|---|---|---|---|
| Created by | Yuno SDK, per checkout session | Yuno on enrollment | Card networks (Visa, Mastercard, Amex) |
| Validity | Single transaction | Persistent until unenrolled | Auto-renewed by card network |
| Use case | Guest checkout, single payments | Returning customers, subscriptions | Recurring payments, higher authorization rates |
| Cross-processor | No | Yes | Yes |
| Requires enrollment | No | Yes | Yes (applied automatically to enrolled cards) |
Additional tokenization capabilities
Card fingerprinting
Every card enrolled through Yuno receives afingerprint — a stable, cryptographic identifier derived from the PAN. Fingerprints remain consistent across multiple enrollments of the same card, allowing you to detect duplicates and deduplicate your vault without ever accessing or storing raw card numbers. See Card Fingerprint.