When I run a test for connecting a user to accept payments through my application, I will need the account id to charge their account.
Stripe\Token::create(
array("customer" => CUSTOMER_ID, "card" => CARD_ID),
array("stripe_account" => CONNECTED_STRIPE_ACCOUNT_ID) // id of the connected account
);
In this snippet (from Stripe), the CONNECTED_STRIPE_ACCOUNT_ID
implies the connecting about id which starts with acct_
How do I obtain this ?
Thanks, Rich.