Query system events

get

/epm/rest/public/v1/audit/systemEvents

Request

Query Parameters
  • Event category
    Allowed Values: [ "ALL", "ALL_EXCLUDING_INDEX", "INDEX", "METADATA", "MIGRATION", "SECURITY", "SYSTEM", "TEMPLATE" ]
  • Event type scoped to eventCategory
  • Start of date range as timestamp with UTC, time zone offset, or time zone name
    Allowed Values: [ "YYYY-MM-DDTHH:MM:SS", "YYYY-MM-DDTHH:MM:SS+hh:mm", "YYYY-MM-DDTHH:MM:SS Region/City" ]
  • Number of records to return. Default 50, maximum 200.
  • Opaque token returned by the previous response
  • End of date range as timestamp with UTC, time zone offset, or time zone name
    Allowed Values: [ "YYYY-MM-DDTHH:MM:SS", "YYYY-MM-DDTHH:MM:SS-hh:mm", "YYYY-MM-DDTHH:MM:SS Region/City" ]
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : SystemEvents
Type: object
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : SystemEvent
Type: object
Show Source
Nested Schema : IdNameDescription
Type: object
Show Source
Nested Schema : User
Type: object
Show Source
Nested Schema : artifactAssignments
Type: array
Show Source
Nested Schema : associatedRoles
Type: array
Show Source
Nested Schema : emailAddresses
Type: array
Show Source
Nested Schema : Preferences
Type: object
Show Source
Nested Schema : ArtifactAssignment
Type: object
Show Source
Nested Schema : Artifact
Type: object
Show Source
Nested Schema : Role
Type: object
Show Source
Nested Schema : TimeZone
Type: object
Show Source

400 Response

Error Response

401 Response

Unauthorized
Back to Top

Examples

The following example shows how to retrieve all the system events by submitting a GET request on the REST resource using cURL.

curl --user edmcs_cloud_user -X GET https://servername.fa.us2.oraclecloud.com/epm/rest/public/v1/audit/systemEvents?eventCategory=SYSTEM&fromDate=2026-07-01T00:00:00.000Z&toDate=2026-07-04T00:00:00.000Z

Example of the Response Body

The following example shows the contents of the response body in JSON format:

{
    "items": [
        {
            "id": "8589A507CE49475A8FC310FE9EF2E613|-",
            "eventCategory": "SYSTEM",
            "eventCategoryCode": "SYSTEM",
            "eventAction": "EVENT",
            "eventDescription": "System starting up",
            "eventType": "System Startup",
            "eventTypeCode": "SYSTEM_STARTUP",
            "eventDate": "2026-07-02T12:43:37.976Z",
            "status": "SUCCESS",
            "user": {
                "userName": "@@sysadmin",
                "fullName": "System User"
            },
            "createdBy": "83ed6845-5299-4dce-ad3f-81a92bcc0853"
        },
        {
            "id": "259E0DB848DC438D8DA3EB09C67943CA|-",
            "eventCategory": "SYSTEM",
            "eventCategoryCode": "SYSTEM",
            "eventAction": "EVENT",
            "eventDescription": "System shutting down",
            "eventType": "System Shutdown",
            "eventTypeCode": "SYSTEM_SHUTDOWN",
            "eventDate": "2026-07-02T12:30:41.830Z",
            "status": "SUCCESS",
            "user": {
                "userName": "@@sysadmin",
                "fullName": "System User"
            },
            "createdBy": "83ed6845-5299-4dce-ad3f-81a92bcc0853"
        }
    ],
    "pageSize": 2,
    "nextPageToken": "MjAyNi0wNi0zMFQxMToxOTo1NS4xMDNafEE1RTQ1NTc5MzRCMDQzRkVBQzgxMjQ5Njk0QTRENEJDfC0",
    "hasMore": true
}
Back to Top