#I'm Tom - Payment Link
1 messages · Page 1 of 1 (latest)
That's great news, how do I do that using the API?🤔
What do you mean? If you have a PaymentLink object, you can directly send the URL in the url property to your customers https://stripe.com/docs/api/payment_links/payment_links/object#payment_link_object-url
Sorry I'm new to this! So as long as I have the stripe payment id I could just make a request to resend the link?
Wait, what are you using to create payment? Are you talking about the feature called Payment Link or something else? https://stripe.com/docs/payments/payment-links
Yep I'm using Payment links
Then here's how it works:
- You create the PaymentLink ones (either in the dashboard or with the API)
- If you want to retrieve the PaymentLink, you can use this https://stripe.com/docs/api/payment_links/payment_links/retrieve
- Then the PaymentLink object has a
urlproperty. You can send that URL to ask many customers as you need
That's so helpful, thank you😍 You can tell I don't entirely know how it works!