#testDeveloper

1 messages · Page 1 of 1 (latest)

sonic loomBOT
cloud blaze
#

What is it you're trying to achieve? Generally you shouldn't be using the Sources API at all (its mostly deprecated): https://stripe.com/docs/sources

Learn about the different payment methods and mechanisms available through the Sources API.

burnt karma
#

how to make an account default

cloud blaze
#

Can you elaborate on the question? What account? Default for what?

burnt karma
#

default for payment

#

if user has 2 accounts , want to make one as default

cloud blaze
#

Payments, or payouts?

burnt karma
#

payouts

cloud blaze
burnt karma
#

so it needs to be passed inside meta data object?

hexed tangle
#

no, it's a top level parameter, not inside metadata. Passing things in metadata has no impact on API behaviour as it's just for your own tracking.

burnt karma
#

ok

#

where does it reflect in the response that it is default for a currency?

burnt karma
#

what is the difference between an account & bank account?

hexed tangle
#

can you share a link to what you call an "account" and what you call a "bank account" in the API?

burnt karma
#

ok or in other words account or external account?

hexed tangle
#

can you share a link to what you call an "account" exactly? a link to the specific API object

burnt karma
#
hexed tangle
#

an Account is a Stripe account. It's like your own Stripe account, it's something you create/manage for the user of your marketplace so they have a representation in Stripe and a way to verify their identity.
an ExternalAccount is a bank account or debit card, which is where payouts for the Stripe Account that owns that ExternalAccount, are sent to.

burnt karma
#

ok

burnt karma
#

what will happen if we create a connect account everytime instead of external accounts can we handle payouts?

lethal tiger
#

Hi! I'm taking over this thread.

#

Can you clarify your question? What do you mean by "instead of"? a connect account and an external account are two completely different things as mentioned earlier.

burnt karma
#

suppose if we have an owner who has the stripe connect account, in his marketplace he has users and service providers, users have cards and payouts need to be performed from users to service providers , so if i add connect accounts for every service provider in the marketplace will that work out or they need to have external accounts. Please suggest according the use case.

lethal tiger
#

If you want to send money from your Stripe account, then you need to use Connect:

  • Each service provider will need a Stripe account connected to your main Stripe account
  • Then the main account can send money to the connected account
  • And if the connected account has an external account setup, they will receive the payouts
burnt karma
#

Can you please elaborate point no 1 and the function used for the same ?

hexed tangle