/mgmt/config/default/ErrorReportSettings GET
Use the HTTP GET method with the
/mgmt/config/default/ErrorReportSettings
resource to request a list of current
appliance failure notification settings.
Resource URL
https://host:port/mgmt/config/default/ErrorReportSettings
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
- 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.
- UserSummary
- String.
- UploadReport
- String.
- UseSmtp
- String.
- InternalState
- String.
- FFDCPacketCapture
- String
- FFDCEventLogCapture
- String
- FFDCMemoryLeakCapture
- String
- AlwaysOnStartup
- String
- AlwaysOnShutdown
- String
- Protocol
- String
- LocationIdentifier
- String
- SmtpServer
- String
- EmailAddress
- String
- EmailSenderAddress
- String
- ReportHistoryKept
- Integer
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/ErrorReportSettings
The following listing shows the received response:
{
"_links": {
"self": {
"href": "/mgmt/config/default/ErrorReportSettings"
},
"doc": {
"href": "/mgmt/docs/config/ErrorReportSettings"
}
},
"ErrorReportSettings": {
"name": "Error-Report",
"_links": {
"self": {
"href": "/mgmt/config/default/ErrorReportSettings/Error-Report"
},
"doc": {
"href": "/mgmt/docs/config/ErrorReportSettings"
}
},
"mAdminState": "enabled",
"UploadReport": "off",
"UseSmtp": "off",
"InternalState": "on",
"FFDCPacketCapture": "off",
"FFDCEventLogCapture": "off",
"FFDCMemoryLeakCapture": "off",
"AlwaysOnStartup": "off",
"AlwaysOnShutdown": "on",
"Protocol": "mqdiag",
"ReportHistoryKept": 5
}
}