We have been using the /v2/orders/search endpoint to retrieve open orders. This seems to have stopped working around September 27th. Here is the body of our query:
{
“location_ids”: [
“REDACTED”
],
“query”: {
“filter”:{
“state_filter”: {
“states”: [“OPEN”]
},
“source_filter”: {
“source_names”: [
“Online Store”
]
},
“fulfillment_filter”: {
“fulfillment_types”: [
“PICKUP”
],
“fulfillment_states”: [
“RESERVED”,
“PREPARED”
]
}
}
}
}
This now returns an empty object even though there are open orders marked ready for pickup on our square dashboard. Any ideas?