#leemc1989
1 messages · Page 1 of 1 (latest)
hi! what eaxctly is the "links feature" you're referring to, so that we're on the same page?
payment links
I'm not sure I understand the question overall
if you're asking how to know on your backend that a payment happened and what it was for, you would use webhooks for that:
https://stripe.com/docs/payments/checkout/fulfill-orders
I can't use those currently because I can't get hold of developer support, they won't contact me, I need to enable my country
I used the PHP library but I can't continue because I need to use server integration but I need to enable it for my country but I cannot contact developer support as they will not contact me back
not sure I follow exactly. If you have a code question, I can try to help here.
Hmm? its on your developer website
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I can pass variables to to the payment link but I don't know how to pass these back to the confirmation page after payment
well like you can do
does that help?
Yes, can this be done for price as well?
no, you can't add a parameter that dynamically includes the Price
you'd instead write code to retrieve the CheckoutSession during the webhook handling and you can get the information from there.
So if a customer fills in the price themselves how would my website know how much they paid?
Ok can you link me to the docs for that?
if a customer fills in the price themselves
how would they do that?
either way the answer is the same
you use webhooks.
https://stripe.com/docs/payments/checkout/fulfill-orders describes how you recieve webhooks and can get all the information on what was purchased.