Questions tagged [stripe-connect]

Connect makes it easy for you to interact with other Stripe accounts. As a platform, you can use Connect to spin up accounts and enable payments for your sellers with as much custom control over the experience as you’d like.

From https://stripe.com/docs/connect:

Stripe Connect is for accepting money on behalf of others, and gaining access to their data. This functionality is available in every country Stripe supports.

You might use Connect if you:

  • Are building a platform that enables e-commerce, as Squarespace or Shopify do.
  • Need to easily accept payments and pay out your service providers, like Lyft with its drivers or Handy with its workers. (You can even create Stripe accounts for your users, so they only ever interact with your platform.)
  • Want to tap into your users’ data to provide analytics or any other business insights. Baremetrics is a good example of a service that does this.

In general, if you’re building a platform or marketplace that needs to pay third-parties or building applications that help Stripe users do more with their account or their data, Connect is likely the right solution for you.

359 questions
6
votes
3 answers

How to transfer Charged Amount from one connected Stripe Account to Another Connected Stripe Account

Is it possible to transfer an amount from one Connected-Account to another Connected-Account? both are connected under one Stripe account. I know i can split the transfer between both accounts like $transfer = \Stripe\Transfer::create(array( …
Meera Tank
  • 699
  • 5
  • 13
6
votes
1 answer

Split payments to multiple vendors by stripe api?

I am building a website for event planners where vendor register there services and consumer book there services. Consumers can select multiple vendors for their events. I have to get payment from user and split to multiple vendors. Using paypal I…
6
votes
1 answer

Getting error when I try to payout to managed account

Trying to used managed accounts for payouts. Basically a user is charged and the money is sent to the managed account instead of the platform account. I am using "sharing customers" I am using the code at the bottom of this link…
anonymous
  • 371
  • 1
  • 3
  • 12
6
votes
2 answers

Cannot find '.xcworkspace' after pod install

I'm very new to iOS developing, so any help is appreciated! So I basically installed Cocoapods, installed pod Stripe and basically had issues going forward. I ended up deleting the files for my project, .xcworkspace, Pods folder, my original…
user6534587
6
votes
4 answers

Stripe Connect Charge - Must authenticate as a connected account to be able to use customer parameter

I am trying to setup Stripe Connect and need to charge the buyer by creating a customer first, then generate a token and finally charge the customer with this token. This works fine as long as the buyer and seller are not the owners of the…
WJA
  • 6,676
  • 16
  • 85
  • 152
5
votes
2 answers

Transfer amount into customer's bank account using Stripe Payout API

I am working on an implementation of REST API for a mobile application which encapsulates feature of redemption of earned points in form of money equivalent to points using Stripe as a payment gateway . To accomplish it I have used Stripe payout API…
Rubin Porwal
  • 3,736
  • 1
  • 23
  • 26
5
votes
1 answer

stripe create payout getting error "Sorry, you don't have any external accounts in that currency (usd)"

I am working on create payout, while run the code i am getting error Sorry, you don't have any external accounts in that currency (usd) first i am creating the customer, and then i am creating the bank account, and after then i am doing the…
Nikul Panchal
  • 663
  • 1
  • 14
  • 32
5
votes
1 answer

Rails Devise + omniauth-stripe-connect "Authorization code does not belong to you"

I'm using Rails with Devise and the omniauth-stripe-connect gem. Devise.rb config.omniauth :stripe_connect, ENV['STRIPE_CONNECT_CLIENT_ID'], ENV['STRIPE_SECRET_KEY'], :scope => 'read_write', …
jalen201
  • 193
  • 14
5
votes
2 answers

How can I get the original charge and refund ids of an automatic payout

Stripe connect accounts are configurable to coalesce payouts in a regular payout schedule, e.g. for monthly payouts in our case. For these monthly payouts we need to explain the account owners which of the transactions on our platform (bookings and…
Perseids
  • 12,584
  • 5
  • 40
  • 64
5
votes
1 answer

How can I integrate Stripe Connect and Checkout products

I am using Stripe Checkout on my web application but now I would like to move to Stripe Connect since I have to support split payments to different stripe accounts. Before with Checkout was enough because all the funds went to my account and then I…
Colo Ghidini
  • 658
  • 9
  • 20
5
votes
2 answers

When using Stripe Connect, how to handle 'account with this email already exists' errors?

While working on an app that connects with Stripe Accounts, I ran into an issue. If an account already exists for a given email, I can't create a new one. Stripe throws an error. But how do I connect to that existing account? I can't find…
RonLugge
  • 5,086
  • 5
  • 33
  • 61
5
votes
1 answer

What identification document does the field legal_entity.personal_id_number designate?

I am trying to create a managed account for my user on Stripe Connect. I have been receiving different requests for different documents in the verification.fields_needed one at a time. I supply the one it says they need and then I get a new value in…
Water Cooler v2
  • 32,724
  • 54
  • 166
  • 336
5
votes
2 answers

Stripe gem - Discover, Diners Club and JCB cards - Your card is not supported

I am using stripe gem and I am trying to add a credit card with the following code as the documentation suggests: Stripe::Token.create( :card => { :number => "4242424242424242", :exp_month => 1, :exp_year => 2017, :cvc => "314" …
JohnDel
  • 2,092
  • 8
  • 35
  • 64
5
votes
2 answers

Window.opener not working with stripe connect popup

I have stripe connect integrated on my project, stripe verification window opens in popup and when it is closed parent window reloaded. I was working fine few days ago but now its giving me window.opener is null error following is my code…
Vikram
  • 3,171
  • 7
  • 37
  • 67
5
votes
2 answers

How to integrate Stripe Connect with Node.js?

So im at the part where you sign in your Stripe account and it redirects you to my website once done. I dont know what to do next and the documentation is difficult to comprehend because i dont have any expierence in node.js I just need some…
user3670235
  • 3,125
  • 3
  • 13
  • 17
1
2
3
23 24