#s2j20330_deleting-date
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
âąď¸ We automatically close idle threads, which makes them read-only. Make sure you stick around to chat in realtime!
đ 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/1212828384581910558
đ Have more to share? You can add more detail below, including code, screenshots, videos, etc.
â˛ď¸ 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. Thank you for your patience!
Hello! it really depends on what kind of APIs you're working with - generally you'd go through all the stripe-specific objects you've created for them and delete the ones you can (like a customer object).
But there are some things (like Subscriptions, Invoices) that can't be fully deleted
s2j20330_deleting-date
what do you mean I cannot fully delete them?
We don't provide anyway to delete Subscriptions (just cancel them) and Invoices can only be deleted if they're a draft (https://docs.stripe.com/api/invoices/delete)
hmm, just a quick question: will deleting the customer object cancel everything related to it?
Yup, it should cancel all subscriptions and remove all their payment information (see https://docs.stripe.com/api/customers/delete)
that is perfect, thanks for answering!