#Lasha
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
thanks if u want more details i can wrote u
I don't really follow, would you mind elaborating please?
yes
i have website where user need to connect their stripe acc so , on website i want get their sold products (charges) with webhook
so i'm interested if there is way to register webhook for third person
do you mean you want to listen to the events on your Connected Accounts?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
for example i have website, and you are a user so u go to my website and there should be way to connect ur stripe account to my website so i could get ur stripe data about selling , in ideal situation i want get that data from webhook
and when u connect ur stripe account i want register webhook from my api
is this example more clear ๐
oh sorry I sent you the wrong url
my bad
you shouldn't create a webhook endpoint per connect account but rather one Connect Webhook Endpoint that listens to any subsequently added Connect Account events
Okay aslo can u send me documentation how can i connect ur stripe?
do you want to connect to existing accounts? or do you want to create new accounts? what type of accounts (Standard, Express, Custom)?
y i will have stripe account for my website so i will connect other users accounts to this account, and about account types idk what kind of accounts users will have
i want connect to existing accounts , because users are using their live accounts ๐
also idk its good practice to ask user connect their stripe accounts to my
Hey! Taking over for my colleague. Let me catch up.
If you want to connect existing Stripe Accounts to your Account, you can opt to oauth:
https://stripe.com/docs/connect/oauth-reference#get-authorize
This applies to Standard Express account. If other users have already Stripe Accounts than probably they will be Standard Account in your case
That will depends on what you want to achieve at the end, I invite you to read this guide in order to discover the available Connect Types, and choose first what's better fit for your business needs
https://stripe.com/docs/connect/accounts
at the end i want to get their selling product data via webhook
After authenticating their connect, you can set a Connect Webhook on your end following this guide:
https://stripe.com/docs/connect/webhooks
thanks