The Scrums.com API is planned and not yet publicly available. Endpoints and behaviour are subject to change before release.
Overview
Audit logs provide an immutable, tamper-evident record of every significant action taken on the Scrums.com platform. They capture the actor, the action, the affected resource, the timestamp, and the outcome.
Audit logs are available on plans that include audit_logs in their feature set (Growth and above). They are stored for a minimum of 12 months and are exportable for compliance reporting.
Audit logs are read-only. They cannot be modified, deleted, or backfilled.
Core Concepts
What is audited
Every API write operation is automatically audited. Additionally, the platform audits:
- Authentication events (login, token use, key creation)
- Access control changes (role updates, invitations, removals)
- Service Line lifecycle changes (create, activate, pause, close)
- Billing events (subscription changes, invoice actions)
- Agent actions (policy changes, run triggers, tool access grants)
- Integration configuration changes
Actor types
Retention and export
Audit logs are retained for 12 months by default. Enterprise plans support extended retention. Logs can be exported in JSONL or CSV format via the export endpoint.
Endpoints
GET /v1/audit-logs
Query the audit log for an organization.
Request
Query parameters
Response
GET /v1/audit-logs/
Retrieve a single audit log entry with full metadata.
POST /v1/audit-logs/export
Export audit logs as a file for compliance or archival purposes.
Request
Response
Poll GET /v1/audit-logs/exports/{export_id} for completion. download_url is populated when status is ready. The URL expires after 1 hour.
Notes
- Exports are processed asynchronously. Large date ranges may take several minutes.
- Only org
admin or owner role can export audit logs.
- Export files are available for 24 hours. After that, re-request the export.
Common Workflows
Security review: all user role changes in the last 30 days
Investigating an unexpected Service Line closure
Compliance export for a quarterly review
Objects
Audit log entry
Best Practices
- Filter by
resource_id for resource-level investigations. When something unexpected happens to a LIN-*, USR-*, or agent, the audit log filtered by that ID gives the complete action history.
- Export quarterly for long-term compliance. The 12-month retention window means logs from 13 months ago will be gone. If your compliance framework requires longer retention, export quarterly to your own storage.
- Treat agent audit entries as first-class. Agents acting autonomously (
actor.type: "agent") leave the same audit trail as humans. Review agent actions in the same compliance workflows.