#NEWJOSSY
1 messages · Page 1 of 1 (latest)
Hi there
Hello there 🙂
The PaymentIntents Search API does support a query field for status: https://stripe.com/docs/api/payment_intents/search
I use this already, but I need to perform search by 2 fields. And my Query looks like this
$"customer:'{user.StripeCustomerId}' AND status:'succeeded' OR status:'requires_payment_method'",
And I get error Queries cannot have a mix of AND and OR
so how can I overcome this ?
Why not just do two different searches?
Make another API call ?