#DramaLlama-dotnet
1 messages · Page 1 of 1 (latest)
@stray dock yep it's a legacy field removed by default in more recent API versions :
https://stripe.com/docs/upgrades#2020-08-27
The tax_ids property on Customers is no longer included by default. You can expand the list but for performance reasons we recommended against doing so unless needed.
basically you can either:
expand "tax_ids" when retrieving the customer(https://stripe.com/docs/api/expanding_objects?lang=dotnet) and it won't be null anymore in the response
Whops, then I think I have had a bug for a while 😉
or call https://stripe.com/docs/api/customer_tax_ids/list?lang=dotnet instead which is technically what we prefer you to do, but both work
I can do that since I need to fix now anyway