I need to check orders with multiple financial status

I need to check for paid AND partially refunded orders. Is there a way to check for 2 statuses?

like this

/admin/api/2021-10/orders.json?financial_status=paid&financial_status=partiallyrefunded

I see this question was asked before but I couldnt find any responses that i can use

Hi @eg252

You can do this by including the financial_status parameter once, and putting the values you are wanting to check for as a comma-separated list. You would want it look like this:

/admin/api/2021-10/orders.json?financial_status=paid,partially_refunded

Hope this helps!