Skip to main content
GET
/
events
/
{eventId}
Get Event Details
curl --request GET \
  --url https://your-subdomain.alienvault.cloud/api/2.0/events/{eventId} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "39a6918f-33f2-ec9b-0fcc-42bb90f10a1f",
  "account_name": "generic-account",
  "event_name": "PutObject",
  "timestamp_occured": "1528817037000",
  "_links": {
    "self": {
      "href": "https://mysubdomain.aveng.us/api/2.0/events/39a6918f-33f2-ec9b-0fcc-42bb90f10a1f"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

eventId
string<uuid>
required

The UUID of the event to retrieve.

Response

Event details retrieved successfully.

This object contains all information pertaining to an Event. Its structure can vary.

I