#khan Umair-subscription-with-fee
1 messages · Page 1 of 1 (latest)
Hi đź‘‹ just to clarify, are you asking about including a one-time fee on the first invoice for a subscription?
yes.. we need first time payment like $299 and then monthly subscription of $99/month
in one payment option
Gotcha, yes that's possible. If you're using Checkout Sessions then you would just pass both the recurring price and the non-recurring price in the line_itemsparameter.
https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items
If you're creating the subscriptions directly, then you'll pass the one-time fee in via the add_invoice_items parameter:
https://stripe.com/docs/api/subscriptions/create#create_subscription-add_invoice_items
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
can you setup this payment option for us?
There are no account changes that need to be made to leverage this functionality. If your integration isn't already taking advantage of it then you will need to update your code to do so.
What does that mean if our “integration” isn’t already taking advantage of it?
How are you currently integrated with Stripe?
Ah, so you're using ClickFunnel's Stripe integration then. They control that integration and we're not familiar with how it works. You'll need to reach out to ClickFunnel to see if their Stripe integration supports the behavior you're looking for, and how to implement that behavior if it does.
ok but we still do subscription in stripe
we can do one time payment in clickfunnel but if we want to do a subscription then we have to do that in stripe
is there a easy way to do that without coding
How are you currently creating your subscriptions?
we do in stripe and then there is option in clickfunnel to add that subscription
By "in Stripe", do you mean you're logging into the Stripe dashboard and creating the subscriptions in there?
yes
In that case you just select multiple products when creating the subscription. One for your recurring subscription price, and one for your one-time fee.
Does that mean the client has to select 2 different items?
are you there?
Sorry, not sure who you're referring to by "the client". Whoever is creating the subscription within your dashboard will need to select the two products when creating the subscription. Your customer will still get a single invoice.
means when someone select the product they have to select one product or there are two one for first time payment and 2nd for monthly subscription
You will need to have two separate Prices, one that is a one-time price and another that is recurring, though you can associate those with the same Product if you wish.
ok this way customer have to select one payment?
they didn't have to select two payments right ..
one for first time and 2nd for per month
Correct, the first invoice will contain both the recurring price and the one-time fee.
This thread has been archived. If you need help with anything else please ask in #dev-help or contact Stripe Support: https://support.stripe.com/contact
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
seems like your price was created in live mode and you're trying to access it in test mode
look it only deduct $99
ok but it only deduct $99
do you have a subscription ID I can take a look at?
No that's not it.
Do you have access to stripe account dashboard by any chance?
yes
Can you locate the subscription that you're trying to update by going to
https://dashboard.stripe.com/test/subscriptions
and once you click on that subscription, you should see a subscription ID on top right
It should look something like sub_xxxxxxxxxxxx
Those are prices
subscription ID should be under the test mode toggle on the dashboard
Top right corner
Hi there! Stepping in for @random skiff as he had to step away. Give me a moment to catch up
Can you clarify the question here?
The Subscription example you provided looks like it charged $299 on the first invoice and then is set to renew at $99
Is this not what you are looking for?
That looks exactly like what you have going on in that subscription
yes but it deduct only $99
check this
That screenshot is your own Dashboard.
It is not the Stripe Dashboard
So I don't know where that data is being pulled from
thats where customer purchased the product
In that case you will need to debug your code for why it is not showing the expected subscription.
I just integrated it into clickfunnel
The subscription example you provided had its first invoice successfully paid for $299 as you can see in your Stripe Dashboard
so you are saying the sub is ok in stripe
Yes looks fine to me