The last common use of HTTP APIs is to obtain a list of existing resources on the server. Lists like this should be obtained using GET requests, since they only retrieve data.
The server should return 200 OK if it can supply the list, or an appropriate error code if not.
Listing our employees, the...