List Requests

Back to Resources

Summary

Returns a collection of all requests for the cluster identified by “:clusterName”.

GET /clusters/:clusterName/requests

Response

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"
        }
      }
    ]	
}