#falun
1 messages · Page 1 of 1 (latest)
Hey there, what kind of account are you trying to create/update? Where are you running into issues, exactly?
If you're using Custom accounts, you can send information directly via the API: https://stripe.com/docs/api/accounts/update
If using Express accounts, you'll need to send your user through account onboarding instead: https://stripe.com/docs/connect/express-accounts#create-link
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I use the Standard account
and I need to know how use the api in cUrl for use it in Custom action in Adalo
What is Adalo?
and what are custom actions?
Most account details can only be provided directly to the API for custom accounts. Standard accounts would provide that information directly to Stripe via onboarding UI.
If you already know some information about the account holder when you create the account, you might be able to include it in the Account create call. What information are you trying to set/update?
You can send the email during account creation, sure: https://stripe.com/docs/api/accounts/create#create_account-email
Similarly, you should be able to send individual[address] info:
https://stripe.com/docs/api/accounts/create#create_account-individual-address
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
If you can share specific errors you're encountering, I can try to help you correct for that