#juanbv-accounts
1 messages · Page 1 of 1 (latest)
👋 happy to help
it won't be a child account unfortunately
you'd have to manually create separate accounts and handle each account by its own
the customers/products/prices/payment methods are totally separate
ah great, so I will basically write a small script that provisions a stripe account and use that created account going forward
it's better if you create the accounts manually
just to be clear, the account is the stripe account admin account
yes a Standard (standalone) Account
do you have any API docs on creating this stripe account? I couldn't find them
that's what I meant, you shouldn't be creating these accounts via API
these are not Connect Accounts
ah well I need to unfortunately for our CI to receive webooks
you will receive webhooks
we went from customers/tokens to payment intents that are a lot more async so I'm changing our pipeline tests by either removing their assumption of async or going the seperate stripe account route
but you'd have to setup each account as if it's the OG account
the webhooks might send to the wrong endpoint
for example: CI-Job1: Receiving webhooks from token_admin_1
CI-Job2: Receiving webhooks from token_admin_1
both jobs might receive the wrong events if that makes sense
if it's only webhooks that you're worried about I have some ideas that might help you navigate this
yeah im open to ideas!
the tests we are running are through selenium, so we are going end2end here
there are multiple ways of achieving the desired results