#icurrytheteam
1 messages · Page 1 of 1 (latest)
hello! if you reach out to Stripe Support - https://support.stripe.com/contact, they'll be able to advise you on that!
Would I just search here for something related to account ownership and user permissions?
Sorry if this seems obvious, but I'm not seeing anything on this page that gives me any contact information of sorts. Just a list of articles.
I'm seeing information related to transferring ownership of a full Stripe account, but not something like an Express or Standard Connect account.
you'd want to click on contact support
we generally help out with API related questions on this channel, so we don't really have the relevant knowledge to help you with questions related to account ownership or user permissions
Oh, so I can't use the API to modify a vendor's Connect account ownership?
like I mentioned, you'd want to reach out to Stripe Support, they would know better than us here as to what can be done to transfer ownership
sure
On my site, users can Subscribe to vendors for their content. I'd like to use the application_fee to collect a portion of the Subscription while the rest goes to the vendor (excluding any Stripe fees of course). I understand that you specify the connect account id associated with the vendor in the method fields. However, if a vendor starts posting content for users to Subscribe to and forgets to create a Stripe account, what would be a recommended way to handle this case? Could I transfer the money to a separate account so that the vendor may still receive their payout, just not until they setup a connect account? Do you see what my problem is here or is my description not great, it's a bit much to ask for.
what fund flow type are you using - destination charges : https://stripe.com/docs/connect/destination-charges or direct charges : https://stripe.com/docs/connect/direct-charges?
Destination charges.
are the connected accounts i.e. vendors all located in the same region (e.g. US and US) that your platform account is? and what country would that be?
with destination charges, if you don't put an application_fee_amount, then the entire amount is transferred to the connected account
if you want to pull the funds back, you can use account debits listed here : https://stripe.com/docs/connect/account-debits
keep in mind though, that Stripe does charge for account debits : https://stripe.com/connect/pricing
May I have a second to read this?
sure
Ok, I'm sorry. I made a mistake. I use the Subscriptions API.
customer=customer_id,
items=[{
'price': price_id
}],
transfer_data={'destination': '{{CONNECT ID}}'},
expand=['latest_invoice.payment_intent'],
application_fee_percent=30,
)```
I mention this code specifically, because what if I don't specify the connect id? Would this throw an error?
if you already have this code, you can run it and test to see what error it throws
haha yes, may I have a second?
yep
Ok, yeah so it threw the error I expected.
It requires a destination.
Hmm, so if a vendor skips the creation process for a connect account and receives a subscription, there'll be an issue (because we'll have no destination specified). I'd prefer not to force them (the vendors) to create their connect account in the signup process of the site. Are there any suggested work arounds?
i don't really understand the issue here. Why wouldn't you want to make the create the connect account at the beginning? If subscriptions are the only way your vendor receives payments, then it would totally make sense to have them create their connected account in the signup process
I wanted to make the signup process as quick as possible on the vendor end.
You'll need to work out this user flow on your own - Either get the user to sign up when creating the connect account at the beginning, or prevent them from receiving subscriptions until they do.
Got it