Magento – Sort Products REST API : Magento 2

apimagento2rest

I did a sort for product by price through API:

http://domain.com/index.php/rest/V1/search?searchCriteria[requestName]=quick_search_container&searchCriteria[filterGroups][0][filters][0][field]=search_term&searchCriteria[filterGroups][0][filters][0][value]=%25life%25&searchCritseria[sortOrders][1][field]=price&searchCriteria[sortOrders][1][direction]=DESC&searchCriteria[currentPage]=1&searchCriteria[pageSize]=100

But there is no sort any help?

Best Answer

Maybe you should try to set index to zero after sortOrders

eg: http://domain.com/index.php/rest/V1/products?searchCriteria[page_size]=10&searchCriteria[sortOrders][0][field]=price&searchCriteria[sortOrders][0][direction]=DESC

Related Topic