Skip to main content

We've Moved!

Product Documentation has moved to docs.hitachivantara.com
Hitachi Vantara Knowledge

Get all event causes and resolutions

Get the cause and resolution for all event IDs. The cause and resolution for an event does not change for any specific HNAS software version, and so can be safely stored and re-used by a client.

HTTP request syntax (URI)
GET <base_URI>/v8/storage/event-details
Return codes
Code Data Description
200 eventDetails Event cause and resolution details retrieved successfully.
500 Error message Error associated with the storage system.

Any HTTP status code other than 200 indicates that the API did not complete successfully.

Request example: Request the first 4 event causes and their resolution
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.11.11:8444/v8/storage/event-details?pageSize=4
Response example
HTTP/1.1 200 OK
{
  "eventDetails": [
    {
      "cause": "An object was opened.",
      "eventId": 560,
      "resolution": "No action required."
    },
    {
      "cause": "A handle to an accessed object was closed.",
      "eventId": 562,
      "resolution": "No action required."
    },
    {
      "cause": "An object was opened for delete.",
      "eventId": 563,
      "resolution": "No action required."
    },
    {
      "cause": "An object was deleted.",
      "eventId": 564,
      "resolution": "No action required."
    }
  ]
}

 

  • Was this article helpful?