#ight_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1369651978845818891
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
no one time payment
are you using Checkout Sessions or Custom Integration?
API/custom integration
where will the order link actually show in the receipt?
using this as an example where/would it show somewhere here
I'm not sure I understand the question
if i sent the customers order link via automated email after purchase where would there order link be displayed within the email
what do you mean by order link?
there order id
so there unique order id for ex website.com/download?/[their order id]
where are you storing that?
I think the easiest would be this https://docs.stripe.com/payments/advanced/receipts#:~:text=To display custom,Cancellation policies
Thank you for purchasing
Your download link: ${env.NEXT_PUBLIC_SITE_URL}/download?session_id=${session_id}
would this work
sure but it should be in between ``
if i added this as custom text in the description attribute where would it display to a customer in the email receipt
I don't have one to show you exactly
because i added that as code and i dont see it in the email receipt from purchasing
what's the PaymentIntent ID?
currently not able to get it
is there like a screenshot you can send of where it should be because i want it to be easy for customers to have their order
live
i thought u could only test in live mode for the custom receipts
you can send the receipt manually from the dashboard
could you pls send the link
what link?
to the page where u can send the receipt manually
this possible too? i wanna know where the custom text will show for the customers
will it be still something similar on the new receipt format
/ this
because thats what the email looked like that was sent - no custom text included
That appears to be related to an invoice, which is a different integration pattern
(stepping in because tarzan had to step away)
ye thats what im using
ok
so how would i do the same thing through invoices
You can add custom memo/footer to an invoice, if that's what you're using.
But taking a step back, Stripe does not formally support automatic delivery of digital goods follow payment, you need to implement that yourself (possibly using text customization as we are discussing) or using a platform that offers that layer on top of payments.
Again, you should test this out in test mode to see the results
And note that you need to set the description (memo) or footer before the invoice is finalized. You cannot edit those fields after finalization.