I want to get all orders in Magento with REST, and I am getting back a bad request every time.
Here is the endpoint what I am hitting:
Magento_host + /rest/V1/orders/searchCriteria=all
The Authorization, and Content-type header is set up good, and with a little change i can get products, and customers, but for some reason for Orders it is not working.
Does anybody have an idea?
2
Answers
It worked with this:
Magento_host +
/rest/V1/orders/?searchCriteria=''
You can try with this code.