Since this morning around 8am we receive
empty response
HTTP/1.1 200 OK
{"orders":[]}
on requests
path:
/admin/api/2022-10/orders.json
options:
array(
'name' => 'EXAMPLE',
'ids' => null,
'since_id' => null,
'status' => 'any',
'fulfillment_status' => 'any',
'financial_status' => 'any',
'created_at_max' => null,
'created_at_min' => null,
'updated_at_max' => null,
'updated_at_min' => null,
'processed_at_max' => null,
'processed_at_min' => null,
'fields' => null,
'limit' => 50,
)
final url:
/admin/api/2022-10/orders.json?name=EXAMPLE&status=any&fulfillment_status=any&financial_status=any&limit=50
header
'Accept: application/json'
'Accept-Charset: utf-8'
'Content-Type: application/json'
'X-Shopify-Access-Token: ***'
'User-Agent: rest-api-test-dev'
'Expect:'
where the orders definitely exists.
Weird:
-
when i remove the options
financial_statusANDfulfillment_status
then it works. -
using null on both does not work
-
using random (wrong) strings like “sasas” does not work and does not trigger an error
-
using any other parameter value than “any” on both works. So it looks like the option “any” is no more existing for both parameters.
Still testing.
Anybody got the same problem and|or an explanation?