I know I can get a specific customer by running: curl -X GET "http://127.0.0.1:32769/index.php/rest/V1/customers/2" -H "Authorization: Bearer token" How do I get the list of ALL customers?.. GET "http://127.0.0.1:32769/index.php/rest/V1/customers" produces "{"message":"Request does not match any route.","trace":null}"
- 
 what is the Magento version you are using?B G Kavinga– B G Kavinga2017年04月25日 14:53:26 +00:00Commented Apr 25, 2017 at 14:53
1 Answer 1
Try following
curl -X GET -g "http://127.0.0.1:32769/index.php/rest/V1/customers/search?searchCriteria[sortOrders][0][field]=email&searchCriteria[sortOrders][0][direction]=asc" -H "Authorization: Bearer token"
Rest API reference http://devdocs.magento.com/swagger/index_20.html
 answered Apr 25, 2017 at 15:19
 
 
 
 B G Kavinga 
 
 1,2768 silver badges10 bronze badges
 
 default