#spacehiker_webhooks
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/1509853755208630312
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ Hi there! Let me take a look
How are users connecting their Stripe account to your application?
well at the moment, I am just using my own credentials locally to test things out, but I was going to use stripe connect oAuth. I assume it works like any other integration portal where the user clicks the button in our frontend gets to stripe and clicks authorize but if there's a better solution let me know.
I wanted to get help planning the architecture before spending time and effort building something that might not work
If you're using Connect, then you can receive events from these connected accounts directly to a Connect webhook on your account: https://docs.stripe.com/connect/webhooks
Each event you receive that way will include the account ID: https://docs.stripe.com/api/events/object#event_object-account
huh okay nice, so I just parse the event and match the account using the account field. and theres no need for these accounts to be under the same organization presumably
Taking over from my colleague. Let me know if you've any follow-up questions
should be good now, I'll continue building and open up a new thread if i have anything