#AntonKotov
1 messages · Page 1 of 1 (latest)
Can you share the ID (req_xxx) of the failing API request? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
I suspect your query syntax is wrong. You're likely looking for an exact match, when in reality you need to do a substring match: https://stripe.com/docs/search#search-syntax
i.e. name~"user_source"
Looks like you're passing * in your query which isn't a part of the search syntax
its my query
if i used - name~"user_source"
i will get com.stripe.exception.InvalidRequestException: Ensure you have properly quoted values while searching. Try updating your query to name:"user_source_cp.qa13.ecomzworld.one_id_361" at line 1 and column 6.; request-id: req_ruDOYeCFcgRwm0
as the error mentions, you need like .setQuery("name~\"" + getName() + "\""), where the value after the ~ is quoted.