Using Connect with Express connected accounts (2024)

Express connected accounts enable your platform to manage payout schedules, customize the flow of funds, and control branding. Stripe handles onboarding, account management, and identity verification.

Express demoUsing Connect with Express connected accounts (1)

To see the complete Express onboarding flow in action, try the sample end-to-end Express integration before you start building your own. This demo includes an example of a connected account onboarding experience and account management for Rocket Rides, an on-demand marketplace.

You can find the demo’s complete source code on GitHub.

Using Connect with Express connected accounts (2)

Before you beginUsing Connect with Express connected accounts (3)

To create Express connected accounts, you must meet all of these requirements:

  • Minimum API version: Express connected accounts require API version 2017-05-25 or later. Capabilities require API version 2019-02-19 or later.
  • Platform in a supported country: Platforms in Australia, Austria, Belgium, Brazil, Bulgaria, Canada, Croatia, Cyprus, the Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hong Kong, Hungary, Ireland, Italy, Japan, Latvia, Lithuania, Luxembourg, Malta, Mexico, the Netherlands, New Zealand, Norway, Poland, Portugal, Romania, Singapore, Slovakia, Slovenia, Spain, Sweden, Switzerland, Thailand, the United Kingdom, and the United States can create Express accounts for most countries Stripe supports. For information about country-specific restrictions, or to request notification when Express accounts become available in your country, contact us.
  • Countries that don’t support self-serve: Due to restrictions that apply when using Connect in the United Arab Emirates and Thailand, platform users in these countries can’t self-serve Express connected accounts. To begin onboarding for Express connected accounts in these countries, contact us.
  • Platforms in the UAE: Platforms in the UAE can only use Express connected accounts based in the UAE with the following charge types: destination_charges and separate charges and transfers. Destination charges using the on_behalf_of attribute are not yet supported for UAE platforms.
  • Vetting for fraud: Because your platform is responsible for losses incurred by Express connected accounts, you must closely examine all accounts that sign up through your platform for potential fraud. Refer to our risk management best practices guide for more information.
  • Platform profile: You need to complete your platform’s profile.

Onboarding Express connected accounts outside of your platform’s country Using Connect with Express connected accounts (4)

You can enable onboarding on a per-country basis in the Connect Settings section of your Dashboard.

The Express account onboarding flow is currently localized in English, French, Spanish, Bulgarian, Simplified Chinese, Traditional Chinese, Czech, Danish, Dutch, Estonian, Finnish, German, Greek, Hungarian, Indonesian, Italian, Japanese, Latvian, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Slovak, Slovenian, Swedish, and Thai.

Keep the following in mind when onboarding accounts globally:

  • International business: Your platform is responsible for understanding the implications of doing business internationally, such as tax and financial reporting.
  • Charge flows: Be sure to review your options for creating charges based on the countries you intend to operate in.
  • Service agreement type: Your platform can create connected accounts under the recipient service agreement to enable cross-border transfers. Such accounts have restricted access to capabilities.
Configure the onboarding experience

Before onboarding your first account, go to the Connect settings page to customize the visual appearance of the form with your brand’s name, color, and icon. Connect Onboarding requires this information.

Create an Express connected account and prefill information

Use the Create Account API to create a connected account with type set to express. You can prefill any information, but at a minimum, you must specify the type. The country of the account defaults to the same country as your platform, and the account confirms the selection during onboarding.

Note

This example includes only some of the fields you can set when creating an account. For a full list of the fields you can set, such as address and website_url, see the Create Account API reference.

Command Line

curl https://api.stripe.com/v1/accounts \ -u "

sk_test_26PHem9AhJZvU623DfE1x4sd

:" \ -d type=express

If you know the country and capabilities for your connected account, you can provide that information when you create the account. Connect Onboarding then collects the requirements for those capabilities. To reduce onboarding effort, request only the capabilities you need.

Command Line

curl https://api.stripe.com/v1/accounts \ -u "

sk_test_26PHem9AhJZvU623DfE1x4sd

:" \ -d country=US \ -d type=express \ -d "capabilities[card_payments][requested]"=true \ -d "capabilities[transfers][requested]"=true \ -d business_type=individual \ --data-urlencode "business_profile[url]"="https://example.com"

If you’ve already collected information for your connected accounts, you can prefill that information on the account object. You can prefill any account information, including personal and business information, external account information, and so on.

Connect Onboarding doesn’t ask for the prefilled information. However, it does ask the account holder to confirm the prefilled information before accepting the Connect service agreement.

When you onboard an account without its own website and your platform provides it with a personal URL, prefill its business_profile.url. If the account doesn’t have a URL, you can prefill its business_profile.product_description instead.

When testing your integration, prefill account information using test data.

If you omit capabilities, Connect Onboarding uses the settings in the Configuration settings section of the Stripe Dashboard to automatically request capabilities based on the account’s country.

Create an account link

Create an Account Link with the following parameters:

  • account - use the account ID returned by the API from the previous step
  • refresh_url
  • return_url
  • type = account_onboarding

Command Line

curl https://api.stripe.com/v1/account_links \ -u "

sk_test_26PHem9AhJZvU623DfE1x4sd

:" \ -d account=

{{CONNECTED_ACCOUNT_ID}}

\ --data-urlencode refresh_url="https://example.com/reauth" \ --data-urlencode return_url="https://example.com/return" \ -d type=account_onboarding

Redirect your account to the account link URL

An Account Link contains a url. Redirect the account to this link to send your account into the onboarding flow. Each Account Link URL can only be used once because it grants access to the account holder’s personal information. Authenticate the account in your application before redirecting them to this URL.

Before creating the first account link for an Express connected account, prefill any Know Your Customer (KYC) information. After you create an account link for an Express connected account, you can’t read or update its KYC information.

Security tip

Don’t email, text, or otherwise send account link URLs outside of your platform application. Instead, provide them to the authenticated account holder within your application.

Handle the connected account returning to your platform

Connect Onboarding requires you to pass both a return_url and refresh_url to handle all cases where the connected account is redirected to your platform. It’s important that you implement these correctly to provide the best experience for your connected account.

Note

You can use HTTP for your return_url and refresh_url while in test mode (for example, to test with localhost), but live mode only accepts HTTPS. Be sure to swap testing URLs for HTTPS URLs before going live.

return_urlUsing Connect with Express connected accounts (10)

Stripe issues a redirect to this URL when the connected account completes the Connect Onboarding flow. This doesn’t mean that all information has been collected or that there are no outstanding requirements on the account. This only means the flow was entered and exited properly.

No state is passed through this URL. After a connected account is redirected to your return_url, check the state of the details_submitted parameter on their account by doing either of the following:

  • Listen to account.updated events with a Connect webhook.
  • Retrieve the account with the API.

refresh_urlUsing Connect with Express connected accounts (11)

Your connected account is redirected to the refresh_url in these cases:

  • The link is expired (a few minutes passed after the link was created).
  • They already visited the URL (they refreshed the page or clicked back or forward in the browser).
  • Your platform can no longer access the account.
  • The account has been rejected.

Set up your refresh_url to trigger a method on your server to call Account Links again with the same parameters, and redirect the connected account to the Connect Onboarding flow to create a seamless experience.

Handle connected accounts that have not completed onboarding

A connected account that’s redirected to your return_url might not have completed the onboarding process. Retrieve their account and check for charges_enabled. If the account isn’t fully onboarded, provide UI prompts to allow them to continue onboarding later. They can complete their account activation through a new account link (generated by your integration). You can check the state of the details_submitted parameter on their account to see if they’ve completed the onboarding process.

See alsoUsing Connect with Express connected accounts (13)

  • Express Dashboard
  • Integrate the Express Dashboard
  • Customize the Express Dashboard
Using Connect with Express connected accounts (2024)

FAQs

Using Connect with Express connected accounts? ›

Now that we have a solid grasp of what Stripe Connect brings to the table, let's explore the three different account types it offers: Standard, Custom, and Express. Each account type is designed to cater to specific use cases and offers varying levels of integration, features, and costs.

What are the three Stripe Connect account types? ›

Now that we have a solid grasp of what Stripe Connect brings to the table, let's explore the three different account types it offers: Standard, Custom, and Express. Each account type is designed to cater to specific use cases and offers varying levels of integration, features, and costs.

What is the difference between Stripe Connect and Stripe Express? ›

Stripe Connect only supports cards as a checkout method. That means users can only use their cards to complete the Stripe Connect payment method. Whereas Stripe Express supports multi-payment methods.

How do I connect an existing Stripe account? ›

Connecting Your Stripe Account

Underneath the 'Set Up Payments' prompt, you'll see the option to connect an existing Stripe account. Click on the link, and enter the email associated with your Stripe account. You'll be asked to sign in using your existing email and password.

What are the two components of Stripe payment fees with Connect? ›

There are two components to Stripe fees with Connect: which pricing plan applies to the payment and which account pays Stripe fees. When using Direct charges, you can choose how Stripe fees are billed to your connected accounts.

Can you have 2 different Stripe accounts? ›

You can create additional Stripe accounts associated with your email address. You might create some accounts yourself, or you might be given access to other accounts as a team member. To create a new account, click on the name of your current Stripe account in the upper-left corner, and select New account.

Can I connect my Stripe account to multiple platforms? ›

Using Stripe with multiple platforms

Users won't be able to connect multiple platforms to the same account due to the single Platform connection policy. Instead, users that plan to use Stripe with multiple platforms can create individual accounts under the same Stripe user login to connect to different platforms.

Does Stripe Express charge a fee? ›

Stripe Connect

If you want to customize your experience, you can opt for the Express or Custom version of Connect, which will require paying additional fees. Standard: Included at no additional cost. Express: $2 per monthly active account and 0.25% plus 25 cents per payout sent.

Is Stripe Express secure? ›

Stripe's security tools and best practices ensure that sensitive information, such as your 1099 tax form, is safely stored and encrypted. Learn more about the safeguards we've put in place to protect your information. Please make sure to keep your login credentials for Stripe Express secure.

What are the payout options for Stripe Express? ›

In supported countries, your default payout schedule is daily automatic. You can change this in the Dashboard to weekly automatic, monthly automatic, or manual payouts. When selecting a weekly or monthly schedule, you can specify the day of the week or month that you want payouts to arrive in your bank account.

What is Stripe Express used for? ›

You can use Stripe Express to manage your tax forms and track your earnings from online platforms that run on Stripe, including DoorDash, Twitter, Spotify, and more. Manage and download tax forms, track payments in real time, see upcoming payouts, and understand key cash flow trends — directly from Stripe Express.

How do I merge two Stripe accounts? ›

Stripe doesn't allow merging of accounts.

How do I top up connected accounts on Stripe? ›

To add funds, go to the Balance section in the Dashboard. Click Add to balance and select why you are adding funds to your account. Click Pay out connected accounts to add funds that are paid out to your connected accounts.

How do I transfer money between connected accounts on Stripe? ›

Create charges on your platform account and transfer funds to multiple connected accounts.
  1. You create a charge on your platform's account and also transfer funds to your connected accounts. ...
  2. You can transfer funds to multiple connected accounts.

What is better than Stripe? ›

As a Stripe alternative, PayPal Business provides similar functionalities in terms of payment processing and online transactions. Both platforms offer easy integration into websites and applications, allowing businesses to accept payments seamlessly.

What are the different types of line account? ›

There are two types of LINE official accounts: Verified and Unverified. These are accounts that have passed LINE's review process. Once your account has been reviewed, it will be issued a Verified account badge and appear in LINE in-app search results. These are accounts that have not been reviewed.

How do I know what accounts are linked to Stripe? ›

The accounts overview page provides multiple ways to view your connected accounts. By default, the All accounts tab is selected.

What is the Stripe Connect? ›

About Stripe Connect

Stripe Connect is a service provider for marketplace payment solutions. With the help of Stripe Connect we do not touch your money and it will be transferred directly from your customers to your bank account every week.

What is the account structure of Stripe? ›

Each account in Stripe Connect (both platform and connected accounts) has an account balance that tracks pending and available funds for that account. With Stripe Treasury, each of these accounts can also have a financial account, which has a balance of its own.

References

Top Articles
Latest Posts
Article information

Author: Eusebia Nader

Last Updated:

Views: 5889

Rating: 5 / 5 (60 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Eusebia Nader

Birthday: 1994-11-11

Address: Apt. 721 977 Ebert Meadows, Jereville, GA 73618-6603

Phone: +2316203969400

Job: International Farming Consultant

Hobby: Reading, Photography, Shooting, Singing, Magic, Kayaking, Mushroom hunting

Introduction: My name is Eusebia Nader, I am a encouraging, brainy, lively, nice, famous, healthy, clever person who loves writing and wants to share my knowledge and understanding with you.