Audit Logs API

This section provides details about NVIDIA Run:ai’s Audit log.

The NVIDIA Run:ai control plane provides the audit log API to reflect the information regarding changes to business objects: clusters, projects and assets etc. Go to the Audit Logsarrow-up-right API reference to view the available actions. Since the amount of data is not trivial, the API is based on paging. It retrieves a specified number of items for each API call. You can get more data by using subsequent calls.

circle-info

Note

Only system administrator users with tenant-wide permissions can access Audit log.

Retrieve Audit Logs

You can retrieve audit logs programmatically to track tenant-related operations, user actions, and system changes across their managed environment.

Define Query Parameters

Use the following optional parameters to filter results:

  • startTime / endTime - ISO 8601 format (e.g., 2024-06-01T00:00:00Z)

  • eventTypes - Filter specific event types (e.g., CREATE, DELETE, LOGIN)

  • resourceTypes - Filter by resource type (e.g., TENANT, CLUSTER, USER)

  • userIds - Filter by one or more user IDs

  • page / pageSize - Paginate results

  • sortasc or desc

Send the API Request

Each entry contains metadata about the action:

  • timestamp

  • eventType

  • resourceType and resourceId

  • userId who initiated the action

  • details describing the change

Example Response

Last updated