#sbusch
1 messages · Page 1 of 1 (latest)
Hi
First of all you need to choose what Stripe Connect Account Type and charges will be using :
https://stripe.com/docs/connect/charges
https://stripe.com/docs/connect/accounts
With stripe i want to handle the payment during the registration and that the money go directly to the event organizer and not first to me as owner of the platform.
According to this, it seems you need to use Direct Charges and so Standard Connetc Account, can you double check the links I shared with you and see if that accurate for your case first ?
Hi @lavish ibex As far as i understand this right this sounds wrong to my. I don't want to charge the organiszer (Seller). I want that the customer can pay there tickets during the event registration.
So i followed this guide nad did the step 4 "Accept payment" and to check ona proceed that the payment worled i created the webhook where i am stuck right now.
https://stripe.com/docs/connect/enable-payment-acceptance-guide?platform=web#handle-post-payment-events
Yes of course the end user will be paying for the ticket.
You need to chose what Charge Type and Connect Type you'll be using
Have you checked Direct Charge funds flow and see if it match your use case?
https://stripe.com/docs/connect/direct-charges#flow-of-funds-with-fees
mhh ok i have standard accounts so far but the thing with the charge is a little bit confusing to me. I already created a product and price. Do i need this charge as well? What is this charge are doing when i do not collect fees?
First how are you willing to charge your end customers, using what Stripe Product? Checkout, Element, Invoice ... ?
Checkout
Cool, you need to create a Checkout Session onbehalf of your Connect Account using stripe header authentication
Here is a guide for integrating Stripe Checkout in your Website:
https://stripe.com/docs/payments/accept-a-payment
The only difference is when creating a Checkout Session, you need to pass the Stripe Account Header for your Connected Account Id
ok but i still not see how to identify the customer in the webhook requests with the user id i have in my database
so it is not about account id from stripe
when stripe tells me that the payment was successfull in the post request in the webhook. How do in know which of the customer to set the status to payed and send the email confirmation?
i need to be able to pass a user id from my system through the checkout/payment process to get back in the complett webhook call
this object need's to deliver me a custom id for my system. https://stripe.com/docs/api/events
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You can use customer's metadata for tracking your internal/technical customer Id
Ah the metadata will be passed through. That's what i was looking for. Thank you very much. I try it out and sorry for the missunderstandings. I just stared Monday with the implementation and so far it is straight forward.