#whatsall
1 messages · Page 1 of 1 (latest)
Is this about buy button? https://stripe.com/docs/payment-links/buy-button
yes
https://stripe.com/docs/payment-links/buy-button#attributes-to-customize-checkout you can specify a client-reference-id to associate your customer information.
yes I found that. But how do I let webhook endpoint receive that information? I didn't find a client-reference-id or similar event type under the "events to send" menu of webhook endpoint panel.
You'll need to listen to checkout.session.completed webhooks, and you can get the client-reference-id from the checkout session object https://stripe.com/docs/api/checkout/sessions/object#checkout_session_object-client_reference_id
https://stripe.com/docs/payments/checkout/fulfill-orders you can learn more about how to fulfill an order here
let me take a look at it. Thanks in advance!