#jogui_best-practices

1 messages ยท Page 1 of 1 (latest)

plucky shellBOT
#

๐Ÿ‘‹ 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/1308737228595269702

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

boreal abyss
#

Sorry, the billing_details object had a typo:

billing_details: {
name: nameInput.value,
email: vueInstance.userEmail,
address: {
country: vueInstance.form.countryIso,
postal_code: vueInstance.form.postalCode,
},
},

mental yoke
#

this is not enough for a valid address

boreal abyss
#

We have been working with this billing_details for a year without problems (only Country and zipcode are enough) and the Stripe automatic tax is working, we have constrained to only use credit cards payment method.

#

Our UI does not ask for more information to our users.

mental yoke
#

yes but starting November 25 this won't be enough

#

you need to start collecting more info (e.g. line_1)

#

and ask all of your current customer's with valid subscriptions to update their billing details

boreal abyss
#

and what happens with renews of all our current customers? we have to ask for this information?

#

5 days is a very short span to do such a change, and will impact tens of thousands of customers

mental yoke
#

you need to contact https://support.stripe.com/?contact=true for any more details or inquiry.

boreal abyss
#

With whom should i contact there? I understand its out of your support scope but some advise would be very appreciated

#

this change will severely impact our bussiness

plucky shellBOT
wheat lodge
#

Does the email contain a documentation link? Can you share it?

boreal abyss
#

Gonna check, one moment please

#

The email:

#

The other link sends me to my dashboard

wheat lodge
#

Thanks, let me familiarise myself with the changes

boreal abyss
#

In this support documentation it does not explain me that I have to add more billing_details.address than now, in fact, i understand that all the people the current Stripe Tax automatic algorithm works, it will continue working (everyone)

#

FYI:

billing_details: {
name: nameInput.value,
email: vueInstance.userEmail,
address: {
country: vueInstance.form.countryIso,
postal_code: vueInstance.form.postalCode,
},
},

#

As you can see, requiring more address data would impact the kpis of our optimized paywall:

wheat lodge
#

My guess is that you've received this email as you're impacted in some way โ€“ perhaps you've a customer with an invalid address and/or an invoice we didn't finalize/pay because the address was invalid

boreal abyss
#

Ive followed the doc article and check for example, all last month invoices (several thousands) and not a single error in "Identifying invoices that failed to finalize due to invalid customer tax location" -> Last Finalization Error Code

#

Also in the second export "Identifying subscriptions with invalid customer tax location" -> Column "Tax Location Recognized" more than (several thousands) and not a single FALSE value

#

eveyrthing is cristal clear correct

#

Maybe we had in the past some edge case for a specific customer, gonna export the whole data to investigate, but in any case, the current implementation is not affected

#

Is there any way i can get a confirmation by your side, that on Nov 25 all the tax system won't stop working? In no place in the entire Stripe docs i have found what sections of the adress object should be fullfilled. We have talked with out tax / finances team and mostly in all the world , with Country and zipcode you can infer the taxes, thats therefore the minimum data we send to Stripe, to improve our paywall and our subscription conversions rates

wheat lodge
#

No we can't provide that confirmation. As per the email there's clear steps on how to identify any problematic invoices/subs/customers and how to remedy them

boreal abyss
#

okay, therefore if there is no problematic invoices/subs/customers following the email documentation, everything should work on Nov 25 right?

#

Gonna revise all our invoices/subs/customers in case we have received this because some very small corpus of users with problems hidden somewhere.

#

As always, thank you @wheat lodge for the help, being the developer responsable for the tax system of our company is always a very dificult thing haha

#

๐Ÿ™‚

wheat lodge
#

You can understand if we'll stop calculating tax for any subscriptions by doing that, then remedy those following the other steps on the page

boreal abyss