#evangoldin_api
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always 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/1217567020711936144
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello, can you tell me more about what you would like these fees to look like? You can definitely break this out in to multiple recurring subscription items or add one time invoice items to represent the fees
Hey @plucky meteor! Thanks for the reply.
We're adding a 3% fee for credit/debit. I'm trying to figure out if there's a way to NOT bundle this fee into the price field.
We want to do a fee that's charged each time we bill a subscription (if they choose to use credit/debit), rather than setting a price change.
Gotcha, so whatever the rest of the subscription's price is, you are adding 3% and want that specifically broken out from the rest?
Ideally, yes. We'd like to have the fee split out โ because we only charge if it chose to pay via credit/debit. And they can change their payment method at any time. So constantly updating the price, via price changes, would be extremely messy.
Just being able to add/remove an additional fee would be much easier, if it's possible.
Example: Parking is $100/mo. They've been paying with ACH for 2 months, but now decide to start paying via card. We want to tack on a $3 fee the next time the subscription renews.
If this subscription is automatically charged each month, you can add a subscription item with a product named something like "Card network fees" and a unit amount of 3% of the entire order https://docs.stripe.com/api/subscriptions/create#create_subscription-items-price_data
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
If this is a month by month manual payment thing and you are adding these fees after the fact, you can add this as a one time invoice item on the customer and the subscription will automatically add it to the subscription's next invoice
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
These are all automatically charged each month using Stripe Billing
gotcha, so subscription item would probably make more sense because that will persist month to month automatically.