#bhanu365-multi-currency

1 messages · Page 1 of 1 (latest)

sweet valve
#

hello, no this is not supported

trail rune
#

But I see that there is a parameter in the subscription create method

sweet valve
#

yeah but a Subscription can only be created for one currency, not multiple

#

you can create diff Subscription with diff currencies, not multiple currencies on one Subscription

trail rune
#

ok got it

#

I want to discount in amount of subscription. I'm not using stripe coupon. we have our own discount coupon so customer can apply the coupon at the time of subscription payment. is it possible to discount like that?

sweet valve
trail rune
#

Thanks let me try it

trail rune
sweet valve
#

any payments

#

any payments that are created via Subscription or Invoice, I should say

trail rune
#

I have implemented but not working

#

How can I check my balance?

#

\Stripe\Customer::update($stripe_customer_id,[
'balance' => -$this->discount
]);

$this->discount. -> the amount of dicount

sweet valve
trail rune
#

Working now! Thanks

sweet valve
#

great

trail rune
#

I have one more question

#

How can I disable the auto renewal in the subscription?

sweet valve
#

what is the scenario ?

trail rune
#

When customers uncheck the auto-renewal the subscription will not be renewed automatically anymore

sweet valve
#

you cancel the Subscription

trail rune
#

No, I don't want to end the subscription. It will end according to the subscription duration and customer can renew their subscription by manually as well

sweet valve
#

what do you mean by

It will end according to the subscription duration
?

#

can you give an example scenario?

like "customer subscribes jan 1, turns off auto renew jan 15, sub ends jan X" etc

trail rune
#

Like if a customer have 1 month subscription and customer turns off auto renew on any date but the subscription ends after 1 month. It means the auto renew will not affect on the subscription date there is no relation between subscription date or auto renewal.

trail rune
sweet valve
#

sorry I'm still unclear

#

can you give more clear details

#

like I mentioned above

trail rune
#

Like this, I have 1 month subscription. It starts 24 aug and end date is 24 sep, If I turns off the auto renew, when the subscription ends on 24 sep it will not renew automatically. I have to pay manually if I want to continue with the same subscription.

open magnet
#

Our Billing product makes subscriptions renew every month automatically

trail rune
open magnet
#

Not really, like it ~doesn't make sense

#

to me it looks like there's no reason for you to use Billing, it's just normal one-time payments

#

otherwise you'd have to cancel the subscription every time?

#

Like there are many work arounds, I just don't understand why you'd want to approach it this way right now

trail rune
#

Sorry, my client is asking for it. Let me talk with her. Thanks for the clarification.

open magnet
#

gotcha

#

So really you want to charge on August 24, keep the subscription active until Sep 24, and then nothing happens anymore, not until they decide they want to get a new month, say on Oct 2 and then they get a month until Nov 2 and then back to nothing?

trail rune
#

Yes exactly that I want

#

We will start notifying the customer a few days before the subscription expires if they turn off the auto-renewal

#

That is our scenario.

open magnet
#

You would create a schedule where the first phase is the current month and then you switch them off to a free Price for $0/month for example so that they are never charged again

#

and if they want to renew the next month you just switch them to the price again and add the other phase for the free Price

#

It's definitely hacky though

trail rune
#

Is there any other way?

open magnet
#

Well that's the way

#

The rest is just building your own recurring payments integration

#

Honestly this flow doesn't really make sense to me

trail rune
#

Let me talk with her. If she want to continue with us on this chat by tomorrow can you unarchive this chat? because it's very difficult to explain again for me 😧

open magnet
#

At that point I'd recommend working with our support team. I've explained exactly what to do

trail rune
#

Ok

#

One more question is:
Is customer balance are storing in increments?
Like first I have updated the balance is -10
then I updated is -5, so it's count as -15 or just -5?

open magnet
#

Basically you can increment/decrement the balance with that API

trail rune
#

Can I do the the payment by payment card that was in the subscription payment method?

open magnet
#

I don't understand what that could mean