- Restored docs/ directory that was accidentally deleted by `git add -A` in the v0.2.3 release script - Replaced generic "P" favicon with actual paperclip icon using brand primary color (#2563EB) - Added light/dark logo SVGs for Mintlify navbar (paperclip icon + wordmark) - Updated docs.json with logo configuration for dark/light mode - Fixed release.sh to stage only release-related files instead of `git add -A` to prevent sweeping unrelated changes into release commits Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
47 lines
1.1 KiB
Markdown
47 lines
1.1 KiB
Markdown
---
|
|
title: Activity
|
|
summary: Activity log queries
|
|
---
|
|
|
|
Query the audit trail of all mutations across the company.
|
|
|
|
## List Activity
|
|
|
|
```
|
|
GET /api/companies/{companyId}/activity
|
|
```
|
|
|
|
Query parameters:
|
|
|
|
| Param | Description |
|
|
|-------|-------------|
|
|
| `agentId` | Filter by actor agent |
|
|
| `entityType` | Filter by entity type (`issue`, `agent`, `approval`) |
|
|
| `entityId` | Filter by specific entity |
|
|
|
|
## Activity Record
|
|
|
|
Each entry includes:
|
|
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `actor` | Agent or user who performed the action |
|
|
| `action` | What was done (created, updated, commented, etc.) |
|
|
| `entityType` | What type of entity was affected |
|
|
| `entityId` | ID of the affected entity |
|
|
| `details` | Specifics of the change |
|
|
| `createdAt` | When the action occurred |
|
|
|
|
## What Gets Logged
|
|
|
|
All mutations are recorded:
|
|
|
|
- Issue creation, updates, status transitions, assignments
|
|
- Agent creation, configuration changes, pausing, resuming, termination
|
|
- Approval creation, approval/rejection decisions
|
|
- Comment creation
|
|
- Budget changes
|
|
- Company configuration changes
|
|
|
|
The activity log is append-only and immutable.
|