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
3
votes
1 answer

How to send money to other people's bank account with stripe api

I'm trying to understand Stripe Connects api. I've a platform where people come and sell their products and customer will pay immediately but I want to hold it in escrow and release it later. That is fine but my all sellers might not have stripe…
3
votes
0 answers

Passing stripe errors to firebase firestore

I'm trying to pass Stripe errors such as (card declined, not enough money on card, card expired etc...) to Firebase Firestore then to the client. I dont know how to make it work for Firestore Any help would be appreciated. Thanks Here's my code: …
3
votes
1 answer

Stripe Connect and multi-domain setup

We are currently looking into implementing Stripe Connect to process payments on a multi-tenant platform. On this platform, each tenant has an own instance of our web application with their own database and their own domain. The deployment is…
lxg
  • 12,375
  • 12
  • 51
  • 73
3
votes
1 answer

Stripe: Error "This application is not authorized to edit this account" while updating the account in stripe

I am very new the stripe & stripe API, right now am integrating the stripe into the django python server. I am able to create the customers & accounts. While updating the account with the bank token, I got an error "This application is not…
Kushal Kumar
  • 173
  • 1
  • 14
3
votes
1 answer

Get the user IP for Stripe registration, using Reactjs and Firebase

I am building a create-react-app using Firebase and react-router. I would like to integrate Stripe as payment service provider. As part of the Stripe verification process, I need to provide the IP address of the user agreeing to the Terms and…
3
votes
3 answers

Stripe Connect account id, customer id security issues

I am just wondering if it is okay to make Stripe account id (for Connect) and customer id visible on browser. Is there any way that a person other than its holder misuses by obtaining the ids? (for example, moving earned money to their account or…
James Yoo
  • 483
  • 1
  • 5
  • 12
3
votes
2 answers

Stripe connect: how to keep funds more than 90 days?

I'm developing and application with stripe connect. It's required that an user S can send funds to a stripe connect managed account user MA. It's necessary that those funds remain in the MA Stripe account for more than 90 days, but the documentation…
Azephiar
  • 501
  • 6
  • 19
3
votes
2 answers

Stripe Connect "No such balance transaction: txn_" on Get Balance by Id after Successful Charge Creation

So in our workflow, we need to do a stripe direct charge, followed by getting the transaction so that we can see the exact fee that stripe charged. The charge comes back as successful: var chargeObj = new StripeChargeCreateOptions …
Jonathon Cwik
  • 987
  • 11
  • 18
3
votes
1 answer

stripe bank to bank direct transfers

OK, I am a little confused on the best way to setup Stripe for customer to customer direct bank transfer. Here's what I want to do. I am building a rental platform where a tenant and landlord can enter their bank information (routing and account)…
jose
  • 33
  • 4
3
votes
1 answer

Verify CVC code before creating charge

I'm trying to check the user entered cvc code. I have stored stripe customer_id and the stripe card_id. I want to verify the CVC code before charging the user. Below are code for creating charge. charge = Stripe::Charge.create( :amount =>…
3
votes
0 answers

Stripe iOS Add Card/Set Default Issue

I've added Stripe integration into our app and I'm having a problem when the user first adds a card. The card gets added successfully but when I try and update the default source I get the error No such source: card-xxxxxxxxxxxx, but if I go back to…
Flexicoder
  • 8,251
  • 4
  • 42
  • 56
3
votes
0 answers

Stripe hangs after OAuth connection using passport-stripe

I am developing a prototype of using Stripe Connect, using passport-stripe to authenticate the user so they will be paid. I have set up the middleware, and I can get to the Stripe Connect OAuth page. I press skip (as my Stripe account is in…
Tom Oakley
  • 6,065
  • 11
  • 44
  • 73
3
votes
3 answers

Stripe Fee calculation Formula

How we can calculate the Stripe. I am using this formula to calculate Stripe Fee. Say amount = $100 (100 * 0.029) + 0.30 = 103.20 But On stripe it is displaying 103.29 instead of 103.20. Don't know what's going on??
sher bahadur
  • 409
  • 1
  • 5
  • 7
3
votes
1 answer

Stripe Connect error 'No such merchant'

I am processing payments using Stripe Connect and the client ID that is meant to receive payments from my application is returning the error "No such merchant: ca_8xxx". My code is : try { $charge = \Stripe\Charge::create(array( "amount" =>…
Pj Rigor
  • 391
  • 6
  • 17
3
votes
1 answer

STRIPE Connect No such customer: cus_XYXXX23

While trying to generate a token for my connected account from my already created stripe customer, I keep on receiving an error saying that the customer id does not exist. That being said, I know for a fact that the customer is being created. Here's…
Nima Amin
  • 92
  • 2
  • 10