List Requests ===== [Back to Resources](index.md#resources) **Summary** Returns a collection of all requests for the cluster identified by ":clusterName". GET /clusters/:clusterName/requests **Response**
HTTP CODE Description
200 OK
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
**Example** Get the collection of the requests for the cluster named "c1". GET /clusters/c1/requests?fields=Requests/request_context 200 OK { "href" : "http://your.ambari.server/api/v1/clusters/c1/requests?fields=Requests/request_context", "items" : [ { "href" : "http://your.ambari.server/api/v1/clusters/c1/requests/1", "Requests" : { "cluster_name" : "c1", "id" : 1, "request_context" : "Install Services" } }, { "href" : "http://your.ambari.server/api/v1/clusters/c1/requests/2", "Requests" : { "cluster_name" : "c1", "id" : 2, "request_context" : "Start Services" } } ] }