#k3davis_api

1 messages ยท Page 1 of 1 (latest)

low crystalBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1250102582047936662

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

ornate fossilBOT
frigid otter
#

Hi there ๐Ÿ‘‹ if you're referring to using the email filter when listing Customers, no, that field is expected to be case-sensitive (as email addresses are technically case-sensitive):
https://docs.stripe.com/api/customers/list#list_customers-email

Depending on your needs, the Search API for Customers may be a better fit here since it's case-insensitive:
https://docs.stripe.com/api/customers/search
The biggest drawback with it is that it relies on objects being indexed, so if you search for a Customer immediately after creating one you likely won't find that record as it hasn't been indexed yet.

cursive haven
#

thank you, i will take a closer look at that alternative.