#hoyong_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/1224809625312956586
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Thanks for the quick response!
How does refund works then? Looks like I am creating a refund object in Stripe, is there a job that runs to actually initiate the refunds? Seeing that I can also update the refund made me curious.
Update is only allowed on the metadata property which you can use to store any key-value pairs.
https://docs.stripe.com/api/refunds/update
I see. So, it's for me to link the refund and the order that I created.
no worries ๐ I bet you are answering tons of questions.
How does void works? Looks like it's for invoice? Can a payment_intent to be voided?
PaymentIntents can be cancelled but it only works under certain conditions, see:
https://docs.stripe.com/api/payment_intents/cancel
void is only for invoices.
That's good to know. Thanks!