#dons
1 messages · Page 1 of 1 (latest)
hi! hmm, I don't see why not. You can save BACS details for future payments(https://stripe.com/docs/payments/bacs-debit/save-bank-details) so you can build such a flow I think
thanks!
Hi, is it possible to have a designated top-up account for one client? Meaning, client tops up a certain amount, then, each month depending on their usage, the top up is used just for that client (taking into account the total stripe account does not go below 0)
not sure I understand, can you elaborate?
So if each individual top up could use a specific number/code, and if an invoice is raised on Stripe referring to that number, it would deduct the specific top up amount with that number
I'm not sure what you call a "top up" is.
in Stripe you can call the API and charge a specific customer's payment method(like saved BACS details) a specific amount by passing API parameters like amount / customer / payment_method
we have no concept of what your top up or numbers are, that's logic on your side , you would write code to figure out how much you need to charge the customer and call the API to do that. I think that's what you're asking about?
so I was referring to this: https://stripe.com/docs/api/topups
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Hi! I'm taking over this thread.
Top ups are not used by your customers. They are used by you, to add funds to your own Stripe account.
I understand, but is there a way to top up directly through incoming payments, and can any logic be applied regarding individual top ups?