/mgmt/status/default/LicenseStatus GET

Use the HTTP GET method with the /mgmt/status/default/LicenseStatus resource to request information about available and enabled features.

Resource URL

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

Request headers

The following header must be sent with the request:
Authorization
This header must be sent to perform authentication.

Request body format

None.

Security requirements

The caller must be authenticated as an appliance user with sufficient authority. For more information about security, see Types of user and how they are authenticated and User authorization, credential mapping, and access profiles.

Response status codes

200
Status information retrieved successfully.
400
Invalid data provided.
401
Not authenticated.
The caller must be authenticated as an appliance user. See Types of user and how they are authenticated for more information.
403
Not authorized.
The caller is authenticated but does not the authority to perform this action. See User authorization, credential mapping, and access profiles for more information.

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 information about appliance features. Each object contains the following fields:
Feature
String.
The name of the feature.
  • DataGlue Binary processing support
  • RaidVolume Hard disk array
  • LocateLED Locate LED light available
  • IPMI Intelligent Platform Management Interface
  • RaidVolumeSr ServeRAID RAID support
  • IntrusionDetection Intrusion Detection support
  • IPMI-LAN Intelligent Platform Management Interface LAN channel
  • IPv6 IPv6 support
  • RealHardware System running on real hardware
  • RealRaid Hard Disk Array backed by a real hardware
  • Language Language support
  • IMQA Base IBM MQ Appliance
Enabled
The enabled status of this feature. Set to Yes, No, or Error.
Available
The availability of this feature. A feature is unavailable when the installed firmware image does not include the code to support the feature. Set to Yes or No.

Examples

The following example requests information about appliance features.

The following URL is used with the HTTP GET method:
https://localhost:5554/mgmt/status/default/LicenseStatus
The following listing shows an example received response:
{
  "_links": {
    "self": {
      "href": "/mgmt/status/default/LicenseStatus"
    },
    "doc": {
      "href": "/mgmt/docs/status/LicenseStatus"
    }
  },
  "LicenseStatus": [
    {
      "Feature": "DataGlue",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "RaidVolume",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "LocateLED",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "IPMI",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "RaidVolumeSr",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "IntrusionDetection",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "IPMI-LAN",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "IPv6",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "RealHardware",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "RealRaid",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "Language",
      "Enabled": "Yes",
      "Available": "Yes"
    },
    {
      "Feature": "IMQA",
      "Enabled": "Yes",
      "Available": "Yes"
    }
  ]
}