Hi,
As far as I know, there is no available condition in the rest apis to search via order status but you can get orders by date filter and filter them later by their status.
Here is an example:
{
“take”: 20,
“skip”: 0,
“filter”: [
{
“must”: [
{
“$type”: “Litium.Data.Queryable.Conditions.DateRangeFilterCondition, Litium.Abstractions”,
“fromDate”: “2023-10-25T17:42:12.000Z”,
“toDate”: “2023-10-26T17:42:12.000Z”
}
]
}
],
“sort”: [
{
“fieldId”: “date”,
“direction”: “descending”
}
]
}