#quest1515
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
Hello! You can mark the Invoice as being paid out of band: https://stripe.com/docs/api/invoices/pay#pay_invoice-paid_out_of_band
we are marking it as paid out of band however it means the payment and invoice are not linked in stripe. Let me get some pictures, one second
There is payment here and I want that against the invoice
Yes, that's correct. If you don't pay using the Invoice's Payment Intent the Invoice won't be linked to the payment.
are they any api calls I can make to connect the two?
No.
The best you can do is add metadata to the Invoice.
You could add the Payment Intent ID there, for example.
hmm, please give me a moment to check my script
just to confirm that if a payment intent was collect from a payment link. There is no way to allocate this to an invoice?
What exactly do you mean by "allocate this to an invoice"?
link an existing payment intent to an existing invoice
No, aside from the metadata approach I mentioned.
If you want to pay the Invoice and have the payment linked you need to use the Invoice's Payment Intent.
Ok, thank you for the clarification, you have saved me a lot of time.