#Apk
1 messages · Page 1 of 1 (latest)
Yeah if you just onboard a standard account as outlined in our docs, you should automatically get those capabilities: https://stripe.com/docs/connect/standard-accounts
So no need to specify any capabilities at all for standard?
Correct
Payment methods are enabled/requested in the account's dashboard
You should have card_payments by default if you just onboard the standard account
transfers as well by default?
Why do you need transfers?
I'm not sure, the docs just said if I'm using direct charges for my connected accounts (I'm charging their customers "on behalf of" them), that I'd need both card_payments and transfers
But yes you should have transfers by default
Awesome, thanks! Makes my code a bit cleaner not having to include those 🙂
Gotcha
Yeah they should come hand in hand
Just follow this to onboard: https://stripe.com/docs/connect/standard-accounts and this to make direct charges: https://stripe.com/docs/connect/direct-charges
If I want to instead use "Create a payments page" here https://stripe.com/docs/connect/creating-a-payments-page?destination-or-direct=direct-charges
Is it possible to create the charge and THEN make a page for it?
So I know the charge's ID before I make a payment page?
Not with Checkout
You'd need to create your own custom checkout page that you host to do that
So the "Custom payment flow" tab in the above link you sent: https://stripe.com/docs/connect/creating-a-payments-page?destination-or-direct=direct-charges
Yeah I'm trying to keep everything with Checkout and not custom for minimal code
Yeah that's fine. That's what Checkout is great for
For creating a checkout page (looking at the .NET examples), what is the difference between setting the Connected AccountID in PaymentIntentData.OnBehalfOf
versus puting it in RequestOptions.StripeAccount ?
PaymentIntentData.OnBehalfOf is an entirely different concept meant to be used with destination charges
If you're focused on direct charges, then just set RequestOptions.StripeAccount
Here's more info on OnBehalfOf if you're curious, but note this link is just for destination charges: https://stripe.com/docs/connect/destination-charges#settlement-merchant
Got it! Thanks, you can close this.