Enable merchants on your platform to accept payments directlyPublic preview
Facilitate direct payments to businesses on your SaaS platform from their own customers.
Allow your merchant-configured connected account to accept direct charge payments using a Stripe-hosted Checkout page that reflects their branding.
Create a Checkout SessionClient-sideServer-side
Add a checkout button to your website that calls a server-side endpoint to create a Checkout Session.
<html> <head> <title>Checkout</title> </head> <body> <form action="/create-checkout-session" method="POST"> <button type="submit">Checkout</button> </form> </body> </html>
On your server, create a Checkout Session that renders the payment form to your customer, including purchase details such as line items, the order amount, and currency. Redirect your customer to the URL returned in the response.
| Parameter | Description |
|---|---|
line_ | Renders up to 100 purchase items in the Stripe-hosted checkout page. |
payment_ | Specifies the amount your platform deducts from the transaction as an application fee. This amount transfers to your platform balance after the payment completes. See collect fees for more information. |
success_ | Where Stripe redirects the customer following payment completion. Stripe updates the URL with the {CHECKOUT_ generated from this request. You can customize redirect behavior with a Stripe-hosted page to:
|
Stripe-Account | A header that identifies your connected account as the transaction merchant of record. Checkout uses the connected account’s branding instead of your platform’s. |
Charges that you create directly on the connected account are reported only on that account. These charges aren’t shown in your platform’s Dashboard or exports. Direct charges are included in reports and Sigma for connected accounts that your platform controls. You can always retrieve this information using the Stripe API.
Handle post-payment eventsServer-side
Stripe sends a checkout.session.completed event when the payment completes. Use a webhook to receive these events and run actions, like 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. Some payment methods also take 2-14 days for payment confirmation. Setting up your integration to listen for asynchronous events enables you to accept multiple payment methods with a single integration.
Stripe recommends handling all of the following events when collecting payments with Checkout:
| Event | Description | Next steps |
|---|---|---|
| checkout.session.completed | The customer has successfully authorized the payment by submitting the Checkout form. | Wait for the payment to succeed or fail. |
| checkout.session.async_payment_succeeded | The customer’s payment succeeded. | Fulfill the purchased goods or services. |
| checkout.session.async_payment_failed | The payment was declined, or failed for some other reason. | Contact the customer through email and request that they place a new order. |
These events all include the Checkout Session object. After the payment succeeds, the underlying PaymentIntent status changes from processing to succeeded or a failure status.
Test the integration
See Testing for additional information to test your integration.
Next steps
- If your monetization strategy includes charging a per-transaction fee, learn how to collect application fees from each payment.
- If you plan to charge a subscription fee for using your platform, learn how to use Billing to charge a service fee.