#oftysterista_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/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.
- oftysterista_api, 11 hours ago, 13 messages
- oftysterista_api, 19 hours ago, 88 messages
- oftysterista_api, 4 days ago, 42 messages
Hi! It is not possible: https://docs.stripe.com/billing/subscriptions/overview#cancel-subscriptions
With pause a subscription can be resumed.
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?
Can I confirm if you wish to pause the payment or the subscription itself? You can only pause payment collection.
i want to pause the subscription
what is the diff between pause the subs and the payment?
You cannot pause a subscription. Pausing the payment basically means you will not charge for the subscription.
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?
- You can retrieve a specific tax rate: https://docs.stripe.com/api/tax_rates/retrieve
- Or list them via https://docs.stripe.com/api/tax_rates/list
means i need to manually filter it by javascript? cause i dont know the id?
wha about this?
You don't need to use JavaScript. You can use other SDKs or cURL.
Yes
how?
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
so i will find the list using this api right? https://docs.stripe.com/api/tax_rates/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
that api returning all the taxRates, means i need to filter it manual? isn't it like that?