#Salman
1 messages · Page 1 of 1 (latest)
Hi
First step you need to choose what Connect Account Type and what Charges you want to use:
https://stripe.com/docs/connect/accounts
https://stripe.com/docs/connect/charges
I want users to be able to transfer money from one another account against NFT transfer...Which type of charges and account type should i choose?
+1
That depends a lot about how the money movement are and what customer/vendors are. This is depending on your business need and I'm affraid that I can't give exact recommendation about this. This channel is for technical integration question. Maybe you should reach out to Stripe Support at https://support.stripe.com/contact and try getting some recommendation about designing your business.
Please don't use mentions I'm with you 🙂
Yes you can:
https://stripe.com/connect/payouts
and doest connect support user to user transfer?
https://stripe.com/docs/api/accounts/create?lang=node
https://stripe.com/docs/api/customers/create?lang=node
among which account can be used for payout?
You can create charge between accounts from your platform account:
https://stripe.com/docs/connect/charges-transfers
account*
customers are the end users who buy the service.
so accounts should be used to interact with connect
yes.
how to accept payment from end user in connect?
That depends on the Stripe Product you want to use (Checkout, Element, Links...)
For example you can follow this guide in order to accept payment:
https://stripe.com/docs/payments/accept-a-payment
You create the PaymentIntent as a destination charge:
https://stripe.com/docs/connect/destination-charges
Here a complete example:
https://github.com/stripe-samples/connect-destination-charge
how to get balance of a user connect account?
You can get the balance using this API:
https://stripe.com/docs/api/balance
And by passing the stripe connect header authentication:
https://stripe.com/docs/connect/authentication#stripe-account-header
Thank you
Welcome!