---
title: "Retrieve all Audit Log Entries"
method: GET
path: "/v2/org/{org}/nico/audit"
tags: ["Audit"]
---

# Retrieve all Audit Log Entries

`GET /v2/org/{org}/nico/audit`

Get all Audit Log entries

User must have authorization role with `PROVIDER_ADMIN` or `TENANT_ADMIN` suffix.

## Query parameters

- `failedOnly` boolean
- `pageNumber` integer
- `pageSize` integer
- `orderBy` 'TIMESTAMP_ASC' | 'TIMESTAMP_DESC'

## Response `200`

OK

- AuditEntry[]
  - `id` string, uuid — Unique identifier
  - `endpoint` string — API endpoint
  - `queryParams` string — Query parameters
  - `method` string — HTTP method
  - `body` string — HTTP body in JSON format
  - `statusCode` integer — HTTP response status code
  - `statusMessage` string — HTTP response status message
  - `clientIP` string — Client IP address
  - `userID` string, uuid, nullable — User ID that executed the API call
  - `user` User — Details of the user collected from authentication tokens
    - `id` string, uuid — Unique identifier for the given user.
    - `email` string, email, nullable — Email used by the user to register with NGC
    - `firstName` string, nullable — First name of the user
    - `lastName` string, nullable — Surname of the user
    - `created` string, date-time — The date that the user was created.
    - `updated` string, date-time — Date/time when the user was last updated in NICo
  - `orgName` string — Organization name
  - `extraData` object — Extra data in JSON format
  - `timestamp` string, date-time — API execution time
  - `durationMs` integer — API execution duration in milliseconds
  - `apiVersion` string — API version

## Other responses

- `403` — Error response when user is not authorized to call an endpoint or retrieve/modify objects

---

[API](https://skmtc.net/nvidia/apis/nvidia-infra-controller-rest-api.md) · [All operations](https://skmtc.net/nvidia/apis/nvidia-infra-controller-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nvidia/nvidia-infra-controller-rest-api/revisions/4c29fe59bd4e/schema)
