#James123
1 messages ยท Page 1 of 1 (latest)
Hi there!
What do you mean by "general invoice payments" ?
We are generating invoices on our system and sending them to the customers, they have varied pricing for each customer. We want to add a payment link so the customer can pay these invoice via stripe
As the agreements are different for each customer it does not really make sense to add a new 'product' for each customer and we only want to send stripe the total amount to be paid.
the amounts billed can change per month as there can be a change in the number of users on the system and what they do during the month.
Sure, you can create a one-off invoice with a generic amount/currency: https://stripe.com/docs/api/invoiceitems/create#create_invoiceitem-amount
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
This looks like what I need, Will try it out, thanx
@mighty forum This looks like it is used to add items to stripe invoices. Can I get a payment link to add to my own generated invoice where this can be paid after generating one of these? I don't really need another invoice in stripe just a way to pay the invoice already generated. Am I missing something?
You can use the hosted_invoice_url field on the Invoice object: https://stripe.com/docs/api/invoices/object#invoice_object-hosted_invoice_url
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Which is our Hosted Invoice Page for payments: https://stripe.com/docs/invoicing/hosted-invoice-page
Payment Links don't work with invoices like that
ok thanx ๐