#oftysterista_api

1 messages ¡ Page 1 of 1 (latest)

split ravineBOT
#

👋 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/1353931545483673727

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

candid sail
subtle viper
#

i know it s not possible if we use cancel

#

but what if i use pause?

candid sail
#

With pause a subscription can be resumed.

subtle viper
#

is that okay if i pause the susbcription instead of cancel it?

#

and then when the user start continue, when willbe the start period time?

candid sail
subtle viper
#

i want to pause the subscription

#

what is the diff between pause the subs and the payment?

candid sail
#

You cannot pause a subscription. Pausing the payment basically means you will not charge for the subscription.

subtle viper
#

but the subscription is still active?

#

i also have question about taxRates. after create a taxRates using

const taxRate = await stripe.taxRates.create({
display_name: 'VAT',
description: 'VAT Germany',
percentage: 16,
jurisdiction: 'DE',
inclusive: false,
});

there is not option to query it?

#

i mean like i want to find Is there already the same taxrates?

candid sail
subtle viper
#

means i need to manually filter it by javascript? cause i dont know the id?

subtle viper
candid sail
candid sail
subtle viper
#

first i create the taxrate like this

const taxRate = await stripe.taxRates.create({
display_name: 'VAT',
description: 'VAT Germany',
percentage: 16,
jurisdiction: 'DE',
inclusive: false,
});

#

then in the future i want to find tax rate for VAT Germany with percentage 16, but i dont know the id

#

that api returning all the taxRates, means i need to filter it manual? isn't it like that?