#jchannon
1 messages ยท Page 1 of 1 (latest)
Hello, do you have the ID for this account? (acct_123)
And what info did you set that is not showing up?
I am still looking in to this. I am also not seeing that info but I may not be looking in the right place.
Did you set this info via the API, the express onboarding flow, or both?
via the dashboard express flow just so i can set some data up quick so i can then test the api transfer money stuff ๐
Thank you. Either should work, especially that. Going to try that and check where the info goes on my test account
ok thanks! I mean creating the connected account worked and all seems fine, it's just I thought it was odd that it asked for those pieces of info and then I had to validate that person, although I used the test mode test id document and the account was created but then looking at it, there was no data
not sure if you have access, but this is the url for it https://dashboard.stripe.com/test/connect/accounts/acct_1LiemHPLSJCyD0u2/activity
Ah I do see it. Trying to see if there is a link I can send you to show that
Ah so it turns out this is a data privacy thing. We only expose personal details from to platforms if the connected account is a Custom account.
So if you log in to the express dashboard of this account. You can see the personal info you put in by going to "Your account" (person icon in upper right corner) -> "Professional details"
ah ok, makes sense, thanks!!
Yep yep, does that bring up any questions on how to handle things or were you just making sure we actually save it properly?
yeah was just wondering where it went but it makes sense if i think about it as i was signing up as a business and then obviously it connects to another stripe account but i guess we wouldn't see that info, although it does raise a question that when they sign up there is no real way to tell what that connected account is because acct_1LiemHPLSJCyD0u2 doesn't give us any clue really so if we were to transfer money to them how do we know who they are ๐
Good question. You should still be able to see the email and website they entered in their contact info on the page in their dashboard. I don't see those set for the account ID you provided so I guess they weren't provided in this case https://dashboard.stripe.com/test/connect/accounts/acct_1La1wnR2Ixz8GanC/activity
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Are you in a situation where you won't know who to pay based solely on transactions and whatnot within your app?
yeah email is not required in test mode and the website can be changed to a product description sign up, which we don't see, so i'm hoping email will have be the identifying factor. yes we might be in that position as we have customers, i)a housing association in charge of apartment block ii)drivers of electric cars. the HA will pay a maintance fee, the drivers a subscription fee and the cost of the electric used in a charging session. we will need to transfer the money accumulated in the sessions to the HA
Yeah that could be helpful there. Is it possible to collect contact info from your users in your app? That way you could save it yourself and you could pre-populate the info when creating the Express account which I think would mean we don't ask for it again in onboarding
I'll ask my colleagues to see if they have an idea of how this is typically handled
i'm wondering if we can somehow pass metadata when we create the transactions in stripe for the charging sessions with the HA they belong to, that way we might be able to query all transactions in stripe where metadata.HA = "super nice HA" and then get a total amount collected and then transfer that amount to the SuperNiceHA Connected account
That could definitely make sense here. You could even use our search API to find all payment intents for a certain account when appropriate https://stripe.com/docs/api/payment_intents/search
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Is there a reason you aren't using Destination Charges here if you do know which account to pay out upfront? I am guessing you don't know the full fees that you will be charging for a bit?
yeah so the drivers will charge their cars for a month, we will invoice them for a subscription fee and then the charging sessions and so at the end of the month we'll take that amount from their stored credit card so yeah we won't know how much we'll charge until the end of the month
once they have paid we will transfer that amount minus the subscription amount to the housing association
Gotcha, your current setup/ideas definitely make sense here. Creating these payments with metadata and then aggregating/paying out definitely makes sense to me.
I'm going to confer with a colleague on your use case to see if there is any API feature I am forgetting that would help you here
we'd just have to hope the email address the HA signs up with as a connected account makes it obvious to us that belong to housing association "super nice HA"
my concern is it won't as they are co-operative groups that have a management team of people who live there so it won't be a superniceha.com email address
Yeah I see how that could throw a wrench in things. I'm trying to understand how you associate this in your system. I assume each HA has a charging station or stations and you know which HA to pay based on which station is used?
yup
Gotcha. So would you be able to use that connection to be able to tell what email to contact about certain payments or stations? Or is there some situation where you wouldn't know what account to talk to where you wouldn't know what station is involved?
Also just getting back on this, we agree that setting the metadata and aggregating payments based on that at the end of the month totally makes sense here.
thanks
i'm sure there's a way to work out who the connected account belongs to, i mean the other way potentially is for them to sign up as a business rather than a individual company because it seems the company name appears in the list of connected accounts
just to need to double check if there's any additional verification steps stripe does in that scenario. signing up as an individual is much quicker, that's all
Unfortunately I am having trouble finding much on that. If you reach out to our support they should have a better knowledge of the requirements for business vs individual here
Or even if there is anything to keep in mind about collecting your own contact info outside of onboarding. As far as I know that should be fine and might make this easier