jsaak
jsaak

Reputation: 645

STRIPE error: In order to use Checkout, you must set an account or business name at https://dashboard.stripe.com/account

I have found this error message:

"In order to use Checkout, you must set an account or business name at https://dashboard.stripe.com/account"

several times when developing stripe connect. But my account and business name is set all right.

Upvotes: 11

Views: 10223

Answers (4)

Ramtin Kosari
Ramtin Kosari

Reputation: 1

if you are using this method for connected account's customer setup payment, the issue is because of that connected account must be set up first due to its status is restricted at first

Upvotes: 0

Aml
Aml

Reputation: 781

I got this error cause of i didn't setup https://dashboard.stripe.com/settings/account so,make sure you setup it .

enter image description here

Upvotes: 2

CodeMantle
CodeMantle

Reputation: 1416

I got this error when moving to Stripe's new implementation, which involves steps:

  1. Add a checkout button to your webpage that sends your customer to a Stripe-hosted checkout page.
  2. Create an order success page to show your customer after the payment.

It says to

First, make sure that you have set up an account name on the Stripe Dashboard.

Once I added a name to my (test) account, it all worked fine.

Upvotes: 24

jsaak
jsaak

Reputation: 645

This is the error message when you want to use the same account for sending and receiving too.

Try to use a different account for sending.

It is quite confusing how stripe handles multiplle account with one login. Was never able to figure it out.

Upvotes: 3

Related Questions