#whoami_code
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1296900659945410621
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! That's correct, yep. There is no such parameter.
If there was it would be listed in our API reference after this one: https://docs.stripe.com/api/accounts/create#create_account-individual-metadata
Do you have a question about that?
but it's required for US -> Singapore payouts
Can you provide more information? Where are you seeing that requirement?
Note that you can set nationality on a Person: https://docs.stripe.com/api/persons/update#update_person-nationality
Is that what you're looking for?
Gotcha. Yeah, you can set that on the Person object.
hmm what's the api for that
I just linked to that above.
Yes, when you create a connected account for an individual a Person is created to represent that person.
You can list the Persons for a given connected account: https://docs.stripe.com/api/persons/list
oh I see, so I need to create the account first, then call stripe.accounts.updatePerson to update the nationality?
You can also get the Person ID by looking at individual.id on the connected account: https://docs.stripe.com/api/accounts/object#account_object-individual-id
Correct.
got it, thanks
I have another question about receiving webhooks for the connected accounts I created
I already setup a webhook endpoint for my platform account, and I'm able to receive webhook events about this platform account updates. But it's not receiving events on the updates of all connected accounts created from the platform. How should I set up the webhook in this case?
Sounds like you need to set up a Connect Webhook Endpoint: https://docs.stripe.com/connect/webhooks
Oh! so I can choose this on my dashboard to listen to connected accounts updates?
Yep!
awesome! thank you for all the answers!