Transition to the Payment Methods API
The Payment Methods API replaces the existing Tokens and Sources APIs as the recommended way for integrations to collect and store payment information. It works with the Payment Intents API to create payments for a wide range of payment methods.
Transitioning to the Payment Methods API
The main difference between the Payment Methods and Sources APIs is that Sources describes transaction state through the status property, which means that each Source
object must be transitioned to a chargeable state before it can be used for a payment. In contrast, a PaymentMethod
is stateless, relying on the PaymentIntent object to represent payment state.
We’re continually adding payment methods support on the Payment Methods API and don’t recommend using the deprecated Sources API.
Flows | Payment Methods with Payment Intents API | Tokens or Sources with Charges API |
---|---|---|
Cards | Supported | Supported on Tokens Not recommended on Sources |
Dynamic 3D Secure | Supported | Not supported |
Card present | Supported | Not supported |
ACH Direct Debit | Supported | Supported on Tokens Not supported on Sources |
Affirm | Supported | Not supported |
Afterpay / Clearpay | Supported | Not supported |
Alipay | Supported | Supported |
Bacs Direct Debit | Supported | Not supported |
Bancontact | Supported | Supported |
Bank Transfers (replacement for Credit Transfers) | Supported in US, EU, GB, JP, and more | Not supported |
BECS Direct Debit (Australia) | Supported | Not supported |
BLIK | Supported | Not supported |
Boleto | Supported | Not supported |
Canada PADs | Supported | Not supported |
EPS | Supported | Not supported |
FPX | Supported | Not supported |
giropay | Supported | Supported |
GrabPay | Supported | Not supported |
iDEAL | Supported | Supported |
Klarna | Supported | |
Konbini | Supported | Not supported |
Multibanco | Planned | Beta |
OXXO | Supported | Not supported |
PayNow | Supported | Not supported |
Pix | Supported | Not supported |
PromptPay | Supported | Not supported |
Przelewy24 | Supported | Beta |
SEPA Direct Debit | Supported | Supported |
Sofort | Supported | Not supported |
WeChat Pay | Supported | Beta |
If your integration currently uses the Sources or Tokens API, follow the migration guide to transition to the Payment Intents and Payment Methods APIs.
When you have chosen the API to integrate against, our guide to payment methods may help you determine the right payment method types to support for your customers. This guide includes detailed descriptions of each payment method and describes the differences in the customer-facing flows, along with the geographic regions where they are most relevant. You can enable any payment method available to you within the Dashboard. Activation is generally instantaneous and does not require additional contracts nor include a lengthy process.
Compatibility with Sources and cards
If you previously collected customer payment details with Stripe using cards or Sources, you can start using the Payment Methods API immediately without migrating any payment information for payment types that are available on the Payment Methods API.
Compatible payment instruments that have been saved to a Customer are usable in any API that accepts a PaymentMethod object. For example, you can use a saved card as a PaymentMethod when creating a PaymentIntent:
Remember to provide the customer ID that your compatible payment instrument is saved to when attaching the object to a PaymentIntent.
You can retrieve all saved compatible payment instruments through the Payment Methods API.
Note that with this compatibility, no new objects are created; the Payment Methods API provides a different view of the same underlying object. For example, updates to a compatible payment instrument through the Payment Methods API is visible through the Sources API and vice versa.
For SEPA Direct Debit payments, you can reuse a SEPA source as a PaymentMethod
by attaching it to a Customer
object. Compatible SEPA sources must have a populated mandate hash with a non single_use
interval.