/mgmt/config/default/SystemSettings GET
Use the HTTP GET method with the /mgmt/config/default/SystemSettings
resource to request a list of current appliance system settings.
Resource URL
https://host:port/mgmt/config/default/SystemSettingsWhere
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
- Information retrieved successfully.
- 400
- Invalid data provided.
- 401
- Not authenticated.
- 403
- Not authorized.
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 the following fields:
- mAdminState
- String.
- ProductOID
- String.
- Description
- String.
- SerialNumber
- String.
- EntitlementNumber
- String
- ProductID
- String
- CapacityMode
- String
- Contact
- String
- SystemName
- String
- Location
- String
- Services
- Integer
- BackupMode
- String
- ProductMode
- String
- AuditReserve
- Integer
- DetectIntrusion
- String
- Locale
- String
- SystemLogFixedFormat
- String
Examples
The following example requests the system settings on the appliance:
The following URL is used with the HTTP GET
method:
GET /mgmt/config/default/SystemSettingsThe following listing shows the received response:
{
"_links": {
"self": {
"href": "/mgmt/config/default/SystemSettings"
},
"doc": {
"href": "/mgmt/docs/config/SystemSettings",
"_links" : {
"self" : {
"href" : "/mgmt/config/default/SystemSettings/System-Settings"
},
"doc" : {
"href" : "/mgmt/docs/config/SystemSettings"
}
},
"mAdminState" : "enabled",
"ProductOID" : "1.3.6.1.4.1.180858.1.9",
"Description" : "IBM MQ Appliance",
"SerialNumber" : "7800666",
"EntitlementNumber" : "7800666",
"ProductID" : "844154X [Rev A1 02-1]",
"CapacityMode" : "A",
"Contact" : "Bill Gamsworth",
"SystemName" : "JACKDAWS_ASH",
"Location" : "HCDC Rack CB6",
"Services" : 72,
"BackupMode" : "normal",
"ProductMode" : "normal",
"AuditReserve" : 40,
"DetectIntrusion" : "enable",
"Locale" : "en",
"SystemLogFixedFormat" : "off"
}
}