#tina24-sct
1 messages · Page 1 of 1 (latest)
we recommend you to create the account through API, then create an account link and send to them. The link contains Stripe hosted onboarding form where Stripe will require they fill up the required information so that you can send money to them
do you have any API that verifies - that provider has created their account successfullly/
yes, you can retrieve the account information https://stripe.com/docs/api/accounts/retrieve
and check the https://stripe.com/docs/api/accounts/object#account_object-requirements
requirement hash to see what requirements are msising
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
one more question -> I have scenario where user buys a service of $100 - and our platform provides $10 off for this user (with coupon code). so there will be two transfer objects need to be created - one for provider and one for our platform for commission. But in this case our platform gives discount not provider. I have to pay $100 provider. But user pays only $90. So how do I create transfer object for provider and our platform.
Do I need to create -$10 transfer object for our platform?
no, you create a 100 dollars transfer to the connected account (provider)
your platform will go negative -10
actually your account by default could not go negative
you will have to first top up your platform balance, or accumulate some balance because of transactions so that you can have sufficient balance to transfer to the provider
np
what's up
I am confused as I an looking at existing stripe code which is implemented on my platform
they are using <script src="https://js.stripe.com/v3/"></script>
That is stripe.js, our UI component for Web, you can use that to render a credit card form
or show a checkout page
ohk
np