Payments for existing customers
Learn how to charge an existing payment method while a customer is on-session.
To completely control how you display existing Payment Methods, use the Direct API implementation.
Display Payment MethodsClient-sideServer-side
Call the list Payment Method endpoint with the allow_
parameter to retrieve a customer’s reusable payment methods.
Use the API response data to display the Payment Methods in your own UI and let the customer select one.
Create PaymentIntentServer-side
Create a PaymentIntent to try to charge the customer with the payment method they selected.
If the API call fails with a 402 response, it means the payment was declined. Ask the customer to try again or use a different payment method.
Check PaymentIntent statusClient-sideServer-side
Assuming the PaymentIntent is successfully created, check its status
:
succeeded
indicates the customer was charged as expected. Display a success message to your customer.requires_
indicates you must prompt additional action, such as authenticating with 3D Secure. Callaction handleNextAction
on the frontend to trigger the action the customer needs to perform.
const { error, paymentIntent } = await stripe.handleNextAction({ clientSecret: "{{CLIENT_SECRET}}" }); if (error) { // Show error from Stripe.js } else { // Actions handled, show success message }
Handle post-payment eventsServer-side
Stripe sends a payment_intent.succeeded event when the payment completes. Use the Dashboard webhook tool or follow the webhook guide to receive these events and run actions, such as sending an order confirmation email to your customer, logging the sale in a database, or starting a shipping workflow.
Listen for these events rather than waiting on a callback from the client. On the client, the customer could close the browser window or quit the app before the callback executes, and malicious clients could manipulate the response. Setting up your integration to listen for asynchronous events is what enables you to accept different types of payment methods with a single integration.
In addition to handling the payment_
event, we recommend handling these other events when collecting payments with the Payment Element:
Event | Description | Action |
---|---|---|
payment_intent.succeeded | Sent when a customer successfully completes a payment. | Send the customer an order confirmation and fulfill their order. |
payment_intent.processing | Sent when a customer successfully initiates a payment, but the payment has yet to complete. This event is most commonly sent when the customer initiates a bank debit. It’s followed by either a payment_ or payment_ event in the future. | Send the customer an order confirmation that indicates their payment is pending. For digital goods, you might want to fulfill the order before waiting for payment to complete. |
payment_intent.payment_failed | Sent when a customer attempts a payment, but the payment fails. | If a payment transitions from processing to payment_ , offer the customer another attempt to pay. |