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
4
votes
3 answers

Stripe Connect Authentication failure - invalid_client: No such API key: Bearer

I'm working on Ruby on Rails with the OmniAuth-StripeConnect Gem, and every time I try to connect to the Stripe Connect API I get this failure in authentication, 'redirecting' me to the failure method of the Omniauth callback controller : E,…
Michamp
  • 43
  • 5
4
votes
4 answers

Stripe: StripeInvalidRequestError Error: No such token: btok_1CQUtNI6UceP4uARenSx4Cjo

I've created a bank account token from Plaid and now I want to use that bank token with Stripe but I get this error No such token: btok_1CQUtNI6UceP4uARenSx4Cjo I'm using Plaid sandbox environment and Stripe test keys I'm following this…
Alamgir Qazi
  • 763
  • 1
  • 11
  • 25
4
votes
1 answer

Stripe Subscription with Initial setup fee

I'm building a relatively simple subscription based app using Stripe. My only real hangup at the moment is that the subscription requires an initial setup fee, and I'm really having a hard time with it. Example: A new user signs-up for…
Rubyx
  • 708
  • 1
  • 11
  • 32
4
votes
1 answer

Shared Customers and Subscriptions in Stripe Connect

Problem Statement: My Customers will have subscriptions with various publishers that have created their projects. I have to attach a customer to platform account and create a subscription which charges them behalf of the Connect custom accounts. So…
Vishnu R
  • 108
  • 1
  • 10
4
votes
1 answer

Stripe Connect: Charging an existing customer against a "connected" (Standalone) account

If attempting to charge a customer record (which has an associated credit-card) via a connected account, I get an error claiming, "No such customer: cus_xxxx" -- even though making a charge to the same-exact customer will work fine when not using a…
Chris W.
  • 1,680
  • 16
  • 35
4
votes
1 answer

Hide email in Stripe Checkout

How to disable or hide email in checkout.js in Stripe Payment onStripeUpdate(e) { this.stripehandler.open({ name: "", description: "", panelLabel: "Pay {{amount}}", allowRememberMe: false, email: "", //--->how to…
Brendon
  • 461
  • 1
  • 5
  • 10
4
votes
1 answer

How to integrate Stripe using React Native and be PCI compliant?

I've researched everywhere and seems like React Native isn't really Stripe supported. I saw https://github.com/xcarpentier/react-native-stripe-api and https://github.com/lrettig/react-native-stripe , but the former is outdated, not supporting Stripe…
user6898719
4
votes
2 answers

Receiving Stripe Webhooks on a wordpress website

I have a wordpress website hosted on GoDaddy. I am an advanced stripe user and have integrated stripe with many Ruby on Rails apps , along with stripe-webhook integration with the Rails. Also i am well versed in how web-hooks work. But recently i…
Sahil Dhankhar
  • 3,596
  • 2
  • 31
  • 44
4
votes
2 answers

Retrieve Stripe charge id upon failed charge

I am trying to retrieve the Stripe charge id upon a failed charge, so I can retrieve my record thanks to that id when the charge.failed hook is fired. I tried inspect the exception fired but I cannot find any way to get it. Here is my code : def…
Aeradriel
  • 1,224
  • 14
  • 36
4
votes
3 answers

Stripe Connect with Multiple Destination Account Ids

We can create payments and charge an application_fee with Stripe connect in NodeJS as follows: // Get the credit card details submitted by the form var token = request.body.stripeToken; // Create the charge on Stripe's servers - this will charge…
WJA
  • 6,676
  • 16
  • 85
  • 152
4
votes
2 answers

Stripe Redirect URI - Dynamic number in url

I want to set UserId in redirect URI of Stripe, My URL changes like this www.mydomain.com/registration/1 www.mydomain.com/registration/2 I have www.mydomain.com/registration/ set in redirect URI which works fine but breaks when Stripe sees that…
mahaDev
  • 125
  • 3
  • 10
4
votes
1 answer

Stripe Connect Customer Data in Staging

I want to use a clone of my production database, and be able to load users with stripe_customer_idcreated using Live API Key in a staging environment, which uses Test API Key . Is there a way to "recreate" or generate new stripe_customer_ids in…
dimitry_n
  • 2,939
  • 1
  • 30
  • 53
3
votes
2 answers

stripe: No such external account but the external account do exist

I create an account in stripe under test module by stripe api. And bind a bank account with this account. Go to Stripe dashboard -> connect -> accounts, I could see the account which I created. Click it and to see the detail, I could see the…
sydridgm
  • 1,012
  • 4
  • 16
  • 30
3
votes
2 answers

Metadeta error on stripe transaction using python

I am doing stripe payment integration using python and use the following data: import requests import json pos = requests.post url = "https://api.stripe.com/v1/sources" headers = {'AUTHORIZATION': 'Bearer sk_test_NXht3wZpuYWRIWpMDDqT3RG2'} data =…
user_123
  • 426
  • 7
  • 23
3
votes
1 answer

How to hold payment for up to 90 days in stripe

Stripe supports to hold payment like escrow up to 90 days but I can't find any parameter for it. What I want is to charge money from user and save it to stripe and release it later by API / manually (whichever available). I also use destination…
James Davis
  • 63
  • 2
  • 6
1 2
3
23 24