
Key features and benefits
- Ease of Use: It enables consumers to make online purchases with a single click, eliminating the need to enter credit card details for each purchase manually.
- Enhanced Security: Utilizes modern authentication standards to minimize fraud risk. This may include methods such as two-factor authentication or payment tokens.
- Consistent Across Various Sites: Offers a similar payment experience across all websites that support this technology, meaning consumers don’t have to learn different processes for each online store.
- Integration with Card Brands: Being backed by major card brands, Click to Pay is widely accepted and trusted.
- Mobile and Desktop Compatibility: Designed to work across various devices, it facilitates online shopping on both desktops and mobile devices.
Network Tokens RequirementNetwork tokens support is required for Click to Pay in all flows (Golden Flow and APM, both with and without passkeys). Merchants must configure network tokens in their Routing rules to ensure successful processing.
Integration
To integrate and start offering Click to Pay to your customers, follow these 4 simple steps:-
Create a connection in the Yuno dashboard using your Click to Pay credentials.

-
Define the payment method route in the Routing section to enable it in the Checkout Builder.

-
Enable Click to Pay in the Checkout builder.

- Define the Card route: Taking in consideration that Click to Pay is a wallet that stores credit card information, the route where you will need to define the providers for each scenario is the same as the Card payment method.
Checkout Flows
Merchants can choose how Click to Pay appears at checkout. Both experiences support passkeys across web and mobile platforms.1. Standalone Payment Method (APM Flow)
Click to Pay appears as a separate payment button alongside cards and other methods.- Mandatory Enrollment: Account creation is mandatory for all users.
- Payload Requirement: Requires a C2P-specific payload.
- Visibility: Best for merchants who want Click to Pay prominently featured.
2. Embedded in Card (Golden Flow)
Click to Pay is embedded within the card payment method and is invisible until the user selects “Card.”- Optional Enrollment: Enrollment is via a checkbox. If declined, the user proceeds with manual card entry (the transaction still shows
CLICK_TO_PAYin the one-time token (OTT)). - Visibility: Best for low-friction UX where enrollment feels optional.
Certification Note
The golden flow with passkeys in Mobile is currently in certification.

Activation Guide
Follow the steps below based on your desired configuration:Option 1: Click to Pay Only (APM)
- Request the DPA ID from the card network (for example, Mastercard).
- Add the Click to Pay connection in the Yuno dashboard using the DPA ID.
- Add the card connection that will process these cards.
- Define the payment method route in Routing and enable Click to Pay in the Checkout Builder.
Option 2: Click to Pay + Passkey
Supported on web browsers only (not supported in WebView).- Request the DPA ID from the card network (for example, Mastercard).
- Add the Click to Pay connection using the DPA ID.
- Add the card connection and configure the Acquirer BIN.
- Request the Yuno backend team to enable the Passkey and Dual Payload flags.
- Create checkout sessions with a
pricefor Passkey to work correctly.
Option 3: Click to Pay + Golden Flow
- Request the DPA ID from the card network (for example, Mastercard).
- Add the Click to Pay connection using the DPA ID.
- Add the card connection that will process these cards.
- Request the Yuno backend team to enable the Golden Flow flag.
Option 4: Click to Pay + Golden Flow + Passkey
Supported on web browsers only (not supported in WebView).- Request the DPA ID from the card network (for example, Mastercard).
- Add the Click to Pay connection.
- Add the card connection and configure the Acquirer BIN.
- Request the Yuno backend team to enable Passkey, Dual Payload, and Golden Flow flags.
- Create checkout sessions with a
pricefor Passkey to work correctly.
SDK integration (Click to Pay Passkey)
ImportantStandard Click to Pay card flows use the existing SDK callbacks, but Passkey users must include a For Passkey transactions, the one-time token (OTT) never reaches the usual SDK callbacks (including
callback_url that matches the app’s deeplink scheme so the shopper returns to the app after authentication (on Android this must match the scheme configured in AndroidManifest.xml). For example:callbackOTT on Android). Always read it from the deeplink parameters before continuing the flow.Mobile: handling the response (OTT and deeplink)
The integration flow for Click to Pay Passkey has a specific response handling that differs from the standard payment flow. When a shopper completes a payment using CTP Passkey, the one-time token (OTT) is not delivered through the usual delegate/listener methods. Instead, the transaction result — both success and failure — is communicated to your app through the deeplink URL. This is the same on iOS, Android, and Flutter: the merchant reads the result from the deeplink URL and acts on it. Only where the deeplink arrives changes per platform. Read two parameters from the deeplink URLhas_error— an error occurred or the shopper canceled. Read themessageparameter and show the error.one_time_token— the transaction succeeded and the OTT is contained in the URL.
one_time_token
- Send it to your backend to create the payment via the Create payment endpoint.
- Continue the flow in the SDK with
continuePaymentto finalize the transaction.
- iOS — in
application(_:open:options:). CallYuno.receiveDeeplink(url)to close the Passkey browser, then read the parameters fromurl. - Flutter — in your deeplink handler.
await Yuno.receiveDeeplink(url: uri)to close the Passkey browser, then read the parameters fromuri. - Android — the deeplink relaunches your
Activity(there is no SDK close call). Read the parameters fromintent.datainonCreate/onNewIntent. The receiving activity must declare anintent-filterinAndroidManifest.xmlmatching the scheme/host/path of yourcallback_url.