Learn how to query a catalogue of audit log events 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
You can use the audit_event_catalogue query to retrieve a list of supported audit log events via the API. These event names can then be used to filter results when querying the audit_logs object.
- Returns an object containing metadata about audit log events
- Can only be queried directly at the root; can't be nested within another query
query {
audit_event_catalogue {
description
metadata_details
name
}
}import { ApiClient } from "@mondaydotcomorg/api";
const mondayApiClient = new ApiClient({ token: myToken, apiVersion: "2025-07" });
const query = `query {
audit_event_catalogue {
description
metadata_details
name
}
}`
const response = await mondayApiClient.request(query);Fields
You can use the following fields to specify what information your audit_event_catalogue query will return.
| Field | Description |
|---|---|
description String | The audit log event's description. |
metadata_detail JSON | The audit log event's metadata. |
name String | The audit log event's description. |
