#root_out-of-band-payments
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1247605141729706034
đ Have more to share? Add details, code, screenshots, videos, etc. below.
Hello! Just to clarify - you're asking how to create an off-session payment using a previously saved payment method?
no
its like
assume customer has paid in cash and we make it like we have received the payment
Ah, so you just want to make a record of a payment in stripe, but the payment was recevied outside of stripe?
yes correct
Gotcha - so the only way to do that is with Invoices https://docs.stripe.com/invoicing/integration. Once your Invoice is created you can mark it as paid_out_of_band (https://docs.stripe.com/api/invoices/pay#pay_invoice-paid_out_of_band) to indicate that it was paid outside of stripe
Correct - payment intents are purely meant for representing payments made in stripe. You'd either have to track those other payments yourself, or rely on Invoices
Alright
Thanks @potent python