#bazylh
1 messages · Page 1 of 1 (latest)
It depends on if you want those requests to come from the connect account or the platform.
If you include the Stripe header, you are essentially saying "[the platform] is facilitating this request on behalf of the [connected account]"
We are a SaaS that wants to send all end-user revenue directly to the customer.
We charge subscriptions seperatly
In this case, should all those flows have the stripe_account param?
def simple_stripe_transaction(
amount=price.total_cost,
application_fee_amount=price.total_fee,
currency="usd",
-
stripe_account=stripe_id, payment_method_types=["card"], transfer_data=dict( destination=stripe_id,
setup_intent = stripe.SetupIntent.retrieve(
intent_id,
+ stripe_account=stripe_account,
api_key=stripe_api_key,
)