#Subalee
1 messages ยท Page 1 of 1 (latest)
Hello! Thanks for the kind words!
I don't believe creating a Subscription Schedule would remove the default tax rate unless you instructed it to. Are you seeing this behavior?
Yes, I'm actually, I even tried to "just" do an upgrade and it was still present on the subscription.
So either it might be issue on stripe's end (Altough I do think that this as most issues is more likely on my end), I will post a screenshots here to better illustrate
This is the "original" subscription I've just created
This is the same subscription, just upgraded (one item has changed) , there is a schedule to one of the items.
The Vat rate on the buttom is now gone
I'm quite sure that I'm not modifying the tax rates on my end , since I only ever work with the default_tax_rates
I'm doing this via API
Nothing has been done trough dashboard in all of these, I can send you the subscription id if you want to explore the underlying events that occured
Yeah, the Subscription ID would be helpful.
sub_1NBme8B2nYnZgMUN6XtOccQ2
looking at this further it is present in this event: https://dashboard.stripe.com/test/events/evt_1NBmfAB2nYnZgMUNUCwMpDw3
and for some reason it's not present anymore after events regarding the creation of schedule https://dashboard.stripe.com/test/events/evt_1NBmfCB2nYnZgMUNoyb1BKiq
PS: I'm just trying to provide as much info as I can, no pressure ๐
Looking... ๐
Looks like the tax rate was removed in this request when you didn't specify the tax rates in the phases: https://dashboard.stripe.com/test/logs/req_2hQxvnb9kY77jy
Each phase you define has to include everything you want in that phase. If you omit something, like default_tax_rates, that means you're telling the API to remove that value: https://stripe.com/docs/api/subscription_schedules/update#update_subscription_schedule-phases-default_tax_rates
Yep, makes sense, I guess I just assumed it's something that would be inherited from the subscription itself.
I will go on and add those to the phases, thank you very much for clarifying.
Also do you think that setting the tax rate on the customer directly (default one) would be able to help in this case?
Nope, phases need to be complete and stand alone.
okay, thanks!