#nerder-subscriptions
1 messages · Page 1 of 1 (latest)
Hi! Can you clarify why you need a $0/month subscription?
And you want the fixed fee to be applied only once, or at every billing period?
Basically because we would like to handle it as it was a cash subscription
The use case is the following, our customers are gym, they have their own Stripe account connected to ours. We handle for them the integration with Stripe in order to handle membership for their customers (gym members)
So, now the feature we are trying to implement is a way for them to create a subscription for when the customer is paying them in cash, so that the sessions counting will be working in the app even if their are not handling payments via the app
We don't reall have a way of facilitating cash payments, other than 'paid out of band' for invoices
My recommendation would be to create your Subscription with collection_method: 'send_invoice', and then you can mark paid out of band once you recieve the cash: https://stripe.com/docs/api/invoices/pay#pay_invoice-paid_out_of_band
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You'd just add the application_fee_percent to the Subscription: https://stripe.com/docs/connect/subscriptions#collecting-fees-on-subscriptions