Audit logs

Learn how to query an account's audit logs using the platform API

The audit logs in monday.com provide a detailed record of an account’s security-related activities, including login attempts, board data exports, and more. Access to these logs is restricted to account admins on the Enterprise plan.

Queries

Get audit logs

  • 🚧 Only available for Enterprise plans
  • Required permissions: manage_account_security
  • Returns an object containing metadata about audit logs
  • Can only be queried directly at the root; can't be nested within another query
query {
  audit_logs(
    user_id: 1234567890 
    events: [
      "login"
      "logout"
    ] 
    limit: 100
  ) {
    logs {
      timestamp
      event
      user_agent
      user {
        id
        name
        email
      }
      ip_address
    }
    pagination {
      has_more_pages
      next_page_number
    }
  }
}
import { ApiClient } from "@mondaydotcomorg/api";
const mondayApiClient = new ApiClient({ token: myToken, apiVersion: "2025-07" });

const query = `query ($userId: ID!, $events: [String!]) { audit_logs(user_id: $userId, events: $events, limit: 100) { logs { timestamp event user_agent user { id name email } ip_address } pagination { has_more_pages next_page_number } } }`
const variables = {
  userId: 1234567890,
  events: ["login", "logout"]
}

const response = await mondayApiClient.request(query, variables);

Arguments

ArgumentTypeDescription
end_timeISO8601DateTimeFilters for logs up to this date and time.
events[String!]The specific event(s) to return logs for. You can view a list of supported events by querying the audit_event_catalogue object.
ip_addressStringThe specific IP address to return logs for.
limitIntThe number of logs per page
pageIntThe page number to get. Starts at 1.
start_timeISO8601DateTimeFilters for logs from this date and time.
user_idIDThe specified user to return logs for. This ID can be retrieved by querying users.

Fields

FieldTypeDescription
logs[AuditLogEntry!]A paginated list of audit log entries.
paginationPaginationDetails about the object's pagination.