The requested article is not available. Either it doesn't apply to this version of the product or the relevant information is organized differently in this version of the docs. You can search, browse, or go back to the other version.
A newer release of this product is available.
Support EMS messages endpoint overview
Contributors
-
PDF of this doc site

Collection of separate PDF docs
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
Overview
Allows access to the EMS event catalog. The catalog contains a list of all events supported by the system and their corresponding descriptions, the reason for an event occurrence, and how to correct issues related to the event.
Example
Querying for the first event that has a message name beginning with 'C'
# The API:
GET /api/support/ems/messages
# The call:
curl -X GET "https://<mgmt-ip>/api/support/ems/messages?fields=name&max_records=1&name=C*" -H "accept: application/hal+json"
# The response:
200 OK
# JSON Body
{
"records": [
{
"name": "CR.Data.File.Inaccessible",
"_links": {
"self": {
"href": "/api/support/ems/messages/CR.Data.File.Inaccessible"
}
}
}
],
"num_records": 1,
"_links": {
"self": {
"href": "/api/support/ems/messages?fields=name&max_records=1&name=C*"
},
}
}
JSON