#theodore_best-practices

1 messages ยท Page 1 of 1 (latest)

pseudo ferryBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1339650048782368791

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

minor badge
#

HI ๐Ÿ‘‹

We don't have any specific recommendations. Directors and owners would be created with the Person API and added to the Account so I think your approach sounds correct.

versed kiln
#

That's great. I was just thinking about it and I'll go with the way I mentioned. Would it be okay if I send the account id back to the client then create the directors? Is it sensitive information?

minor badge
#

The account ID itself is not sensitive but it might be confusing to the users.

versed kiln
#

Right. I will store it on the device without them seeing it. Then I'll create the directors one by one or should I send a json array with all of them?

minor badge
#

You can only create one person at a time, if that's what you mean.

#

But you should test out your integration and, as long as the Stripe APIs return successfully, you should tailor your approach to fit your user journey and business model

versed kiln
#

Yes I'm getting familiar with the Stripe Node api and docs. I'm currently building a marketplace for tradespeople. Thanks again @minor badge

minor badge
#

Have you checked out Stripe Sandboxes? It allows you to create customized Test mode only accounts so you can build out complex simulations without affecting your Live mode account. When you are done, you can delete that sandbox. Given what you are building, I recommend utilizing Sandboxes to allow you to build complex end-to-end simulations to ensure all the parts of your application work as you expect.

versed kiln
#

I'm testing my integration in test mode using the secret test key provided by the Stripe dashboard. The sandbox feature is in developer preview. Is it ready to be used? What is the difference?

minor badge
#

The difference is that it's a separate Account ID with unique publishable and secret keys. You can also configure it to have different account settings than your actual Stripe Account, which can allow you to try out different configurations without changing the settings on your actual Stripe Account.

versed kiln
#

Alright. I'll take a look.