/mgmt/status/ GET

Use the HTTP GET method with the /mgmt/status/ resource to request a list of appliance status providers.

Resource URL

https://host:port/mgmt/status/
Where port is 5554 by default.

Request headers

None.

Request body format

None.

Security requirements

The caller does not need to be authenticated to make this call.

Response status codes

200
Status information retrieved successfully.
400
Invalid data provided.

Response headers

Content-Type
This header is returned with a value of application/json.

Response body format

The response is in JSON format. The response includes all status providers on the appliance. It includes the resources by embedding a _links element within the JSON response, which contains pointers to accessible status provider resources, including possible documentation. You can then target the resources within the _links element in your subsequent REST management interface requests. Each of these JSON objects contains the following attributes:
name
String.
Specifies the name of the status provider.
href
String.
Specifies the URI for the status provider

Examples

The following example requests a list of the status providers on the appliance.

The following URL is used with the HTTP GET method:
https://localhost:5554/mgmt/status/
The following listing shows some fragments of the received response:
{
  "_links": {
    "self": {
      "href": "/mgmt/status/"
    },
    "ActiveUsers": {
      "href": "/mgmt/status/{domain}/ActiveUsers"
    },
    "Battery": {
      "href": "/mgmt/status/{domain}/CryptoModeStatus"
    },
    "ConnectionsAccepted": {
      "href": "/mgmt/status/{domain}/CurrentSensors"
    },
    ...
    "LogTargetStatus":{
      "href":"/mgmt/status/{domain}/LogTargetStatus"
    },
    "MQSystemResources":{
      "href":"/mgmt/status/{domain}/MQSystemResources"
    },
    "NDCacheStatus2":{
      "href":"/mgmt/status/{domain}/NDCacheStatus2"
    },
    ...
  }  
}