#james008 - customer info following payment link payment
1 messages · Page 1 of 1 (latest)
What do you mean by "for which customer"?
@pallid jewel who made the payment from the payment link can I get the information of the user who made payment for that subscription in the redirect URL?
Generally we'd suggest using webhooks to track the completed checkout sessions and inspect the customer and purchase information there:
https://stripe.com/docs/payments/checkout/fulfill-orders
But if you want to have the session ID on the redirected landing page, you can also include the session ID in the URL using the same technique as Checkout:
https://stripe.com/docs/payments/checkout/custom-success-page#modify-success-url
then you'd retrieve that session ID from the URL and use it to retrieve the session object from the API