I am trying to send the page_info header link into my API call, however i get this error every time:
Raw response for the API Status code 400 {“errors”:{“status”:“status cannot be passed when page_info is present. See https://help.shopify.com/api/guides/paginated-rest-results for more information.”,“fulfillment_status”:“fulfillment_status cannot be passed when page_info is present. See https://help.shopify.com/api/guides/paginated-rest-results for more information.”}}
I am trying to call this link: https://[apikey]:[password]@[hostname].myshopify.com/admin/api/2021-10/orders.json?limit=250&status=any&fulfillment_status=any&page_info=[page_info]
I can get the link header when i call: https://[apikey]:[password]@[hostname].myshopify.com/admin/api/2021-10/orders.json?page_info=[page_info]
but i just get the error when i add: limit=250&status=any&fulfillment_status=any - i just get errors.
any ideas?