For AI agents: a documentation index is available at https://docs.coverbase.com/llms.txt — this page is also available in markdown by appending .md to the URL.
Coverbase records what happened, who did it, and when — across the dashboard, the public API, and AI assistants. You can review it in the UI and pull it programmatically through the audit API, so it can flow into your SIEM, your GRC platform, or your own evidence packages.
Two audit surfaces
Coverbase keeps audit data on two complementary surfaces, backed by the same underlying activity store:System-wide audit log
Administration and configuration changes across the whole organization: sign-ins, user management, settings, integrations, controls, questionnaires, and Radar configuration. Reviewed under Settings → Audit Logs, exportable to Excel, and readable via
GET /v1/system_audit_log.Per-object activity trails
The change history of an individual record — a vendor, assessment, finding, contract, and so on. Shown on each record’s activity feed in the dashboard, readable via
GET /v1/activity, and queryable by AI assistants through the MCP server.What is captured
Sign-ins and sign-outs
Session lifecycle events from the identity provider are recorded per organization, including the user’s email, client IP address, user agent, and browser.
User management
User creation, invitations (sent, accepted, revoked), profile updates, role changes, deactivation, and deletion.
Configuration changes
Creates, updates, and archives across organization settings, statuses, tags, templates, scales, risk domains, custom fields, departments, terminology, notification settings, workflows, intake configuration, and import/export runs.
Controls, questionnaires, and Radar
Control and control-set changes, questionnaire question lifecycle, and Radar source, detector, and alert configuration changes.
Public-API calls
Every authenticated
/v1/* call is recorded as an external_api_call, capturing the method, route, status, and the key that made it. See Public-API audit records.Integration and key lifecycle
API keys, MCP API keys, external integrations, and API sources — added, updated, and deactivated.
Exporting the audit log is itself audited. Every Excel export from the audit log page is recorded as an
audit_log_exported event, including the number of rows exported — so reviewing the trail leaves a trail.Event groups and event types
Every system audit event carries a machine-readable event type and rolls up into one of eight event groups, which drive the filters in the dashboard and the API:
The Archive group collects every deactivation, archival, and deletion event across all categories, so destructive changes can be reviewed in one place.
GET /v1/system_audit_log/metadata returns this taxonomy programmatically — use it to populate filter pickers or keep an export pipeline in sync as new event types are added.
What each record contains
Every audit record includes:
Two details worth knowing about the
data payload:
- Updates are recorded as field-level diffs — you can see exactly which fields changed and their before/after values, not just that “something was updated.”
- Sign-in events carry session forensics — the user’s email, client IP address, user agent, and browser, sourced from the identity provider’s session events.
Reviewing the audit log in the dashboard
The system-wide audit log lives at Settings → Audit Logs. By default it shows all event groups for the last 30 days, newest first — nothing is hidden by default.1
Filter
Narrow by time range (last 24 hours, 7/30/90 days, all time, or a custom date range), by one or more event groups, by specific event types, or with free-text search. Search matches actor names, event summaries, and understands terms like “created”, “updated”, “exported”, “system”, and group names. Filters apply across all matching events, not just the visible page.
2
Inspect
Each row shows the time, actor, event badge, target, and a details column with the field-level diff or creation values.
3
Export
Export Excel downloads every event matching the current filters (not just the current page) as a spreadsheet with timestamp, actor, event group, event type, target, summary, and details columns. The export is recorded in the log as
audit_log_exported.Who can see it
Access to the audit log is governed by your organization’s roles. For organizations using custom roles, the Audit trail resource carriesread and export permissions and is always organization-wide — it cannot be scoped to assigned records. Headless access uses an ak_* API key carrying the audit:read scope (see below).
Reading the audit log through the API
For SIEM ingestion and scheduled exports, read the system audit log programmatically:GET /v1/system_audit_log
Responses are ordered newest first and include
X-Total-Count and Content-Range headers for paging through the full result set.
Companion endpoints
GET /v1/system_audit_log/metadata— the event group and event type taxonomy with display labels.POST /v1/system_audit_log/export_ack— records anaudit_log_exportedevent; the dashboard calls this after every Excel export. If you build your own export tooling, call it too so exports stay visible in the trail.
Authentication for the audit API
The audit read endpoints accept either of:- a dashboard session JWT, subject to your organization’s role permissions, or
- an
ak_*API key carrying theaudit:readscope — for headless export pipelines.
Per-object activity trails
Separate from the system-wide log, every major record keeps its own activity trail — creations, field updates, notes, exports, and submissions against that specific object, each attributed to the acting user (or System for automated changes).- In the dashboard — shown on the record’s activity feed (for example, a vendor’s or assessment’s activity tab).
- Through the API —
GET /v1/activitywithtarget_typeandtarget_idquery parameters returns the trail for one object;related_activity=truepulls in activity from related records (for example, an assessment’s findings). - Through AI assistants — the Coverbase MCP server exposes the trail via
query_platformwithkind: "audit_trail"for vendors, assessments, assessment reviews, contracts, findings, services, obligations, follow-ups, portals, vendor documents, work queue items, and evals. The built-inwho_changed_thisprompt scripts a full audit investigation for one object.
Public-API audit records
Each authenticated public-API request is recorded in your organization’s activity log astype=external_api_call with target_type=external_api_request. Every record captures:
- the HTTP method, request path, and matched route template
- the response status code and duration in milliseconds
- the names of the query parameters used (values are not recorded)
- the
ak_*key ID and human-readable name that authenticated the request - the client IP and a per-request correlation ID
Request and response bodies are never persisted in the audit log — only metadata about the call. This keeps the trail useful for forensics without itself becoming a sensitive data store.
AI assistant (MCP) activity
AI assistant activity is covered at two layers:- Changes made through MCP appear in the audit surfaces. MCP tool calls run as the connected user, so writes land in the same per-object activity trails — and, for configuration surfaces like controls, custom fields, and Radar detectors, the system-wide audit log — attributed to that user, exactly as if they had made the change in the dashboard. MCP API key creation and revocation appear in the Integrations group.
- Tool invocations are logged server-side. Every MCP tool call (including reads) is recorded in Coverbase’s security logs with the user identity, organization, tool name, sanitized parameters, and outcome, for security monitoring and incident response. Credentials and high-risk PII are redacted before logging. See MCP security and privacy for details.
Retention
Audit records are retained in line with the retention periods described in our agreements and privacy policy. For long-term retention beyond that window, export the log on a recurring schedule into your own system of record.Build a defensible evidence trail
1
Provision a scoped export key
Have an admin mint an
ak_* key with the audit:read scope for your export job.2
Pull on a schedule
Poll
GET /v1/system_audit_log on a fixed cadence with a start_ts watermark, paging through results via limit/offset and the X-Total-Count header. See pagination.3
Ship to your system of record
Forward records into your SIEM or GRC platform so your auditors see Coverbase activity alongside the rest of your environment.