#Kutay
1 messages · Page 1 of 1 (latest)
It's fine to store account IDs. You can even share them in this channel! There isn't really anything you can do with them without a corresponding API key
You have the steps right. You retrieve the account and look at the requirements hash: https://stripe.com/docs/api/accounts/object#account_object-requirements
You would also retrieve the account and look at the capabilities hash to see if the account has charges or payouts blocked.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
oh i understand thank you. So do you think i should save the account id as plain text to local storage after the creation flow starts and retrieve the state with the id when user redirected? should i also store the account id on my database? i think i should.
That seems like a reasonable way to go, that way you have them locally if you ever need them.
okay thank you very much