#juanbv-accounts

1 messages · Page 1 of 1 (latest)

tall monolith
#

👋 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

pure sinew
#

ah great, so I will basically write a small script that provisions a stripe account and use that created account going forward

tall monolith
#

it's better if you create the accounts manually

pure sinew
#

just to be clear, the account is the stripe account admin account

tall monolith
#

yes a Standard (standalone) Account

pure sinew
#

do you have any API docs on creating this stripe account? I couldn't find them

tall monolith
#

that's what I meant, you shouldn't be creating these accounts via API

#

these are not Connect Accounts

pure sinew
#

ah well I need to unfortunately for our CI to receive webooks

tall monolith
#

you will receive webhooks

pure sinew
#

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

tall monolith
#

but you'd have to setup each account as if it's the OG account

pure sinew
#

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

tall monolith
#

if it's only webhooks that you're worried about I have some ideas that might help you navigate this

pure sinew
#

yeah im open to ideas!

#

the tests we are running are through selenium, so we are going end2end here

tall monolith
#

there are multiple ways of achieving the desired results