---
title: "List Audit Logs"
method: GET
path: "/webapi/v2/audit/logs"
tags: ["Others"]
---

# List Audit Logs

`GET /webapi/v2/audit/logs`

Get audit logs with filtering and pagination.

## Query parameters

- `createdAt` string, date-time — Base timestamp (UTC)
- `beforeRange` integer — Days before created_at (max 31 days)
- `email` string, nullable — Agent email filter
- `apiRequestType` string, nullable — API request type (rest/graphql)
- `params` string[] — Additional parameters
- `offset` integer — Offset for pagination
- `limit` integer — Limit for pagination

## Headers

- `AGENT-EMAIL` string
- `USER-EMAIL` string
- `OWN-USER-ID` string

## Response `200`

OK

- AuditLogListResponse — Response model for audit log list.
  - `result` AuditLog[], required — List of audit logs
    - `id` string, required — Log ID
    - `createdAt` string, date-time, required — Created timestamp (UTC)
    - `agent` AgentInfo, required — Agent information for audit log.
      - `id` string, required — Agent ID
      - `email` string, required — Agent email
      - `firstName` string, nullable, required — Agent first name
      - `lastName` string, nullable, required — Agent last name
    - `ip` string, nullable, required — IP address
    - `operation` string, nullable, required — GraphQL operation
    - `mutation` string, nullable, required — GraphQL mutation
    - `method` string, nullable, required — HTTP method
    - `path` string, nullable, required — HTTP path
    - `variables` object, nullable, required — Variables
    - `query` object, nullable, required — Query parameters
    - `body` object, nullable, required — Request body
  - `count` integer, required — Total count

## Other responses

- `400` — Invalid request parameters.
- `401` — Authentication failed. The API-KEY header is missing or invalid.
- `403` — Access denied. The project is inactive or the request IP is not allowed.
- `500` — Internal server error.

---

[API](https://skmtc.dev/allganize/apis/alli-api-documentation.md) · [All operations](https://skmtc.dev/allganize/apis/alli-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/allganize/alli-api-documentation/revisions/c3e966e54dfc/schema)
