Get recent activity feed
GET /api/v1/activity/feed
Returns the most recent activity log entries for the authenticated tenant from PostgreSQL. Used for initial page load before Firestore real-time subscriptions take over.
Authorizations
Parameters
Query Parameters
Items per page (max 100)
Items per page (max 100)
Number of items to skip
Number of items to skip
Responses
200
Successful Response
Response envelope for the feed endpoint.
Attributes: items: List of activity feed entries. total: Total count of entries for this tenant. limit: Requested page size. offset: Requested offset.
object
A single activity log entry in the feed response.
Attributes: id: Activity log entry UUID. agent_role: Which C-suite agent performed the action. agent_name: Human-readable agent display name. action_type: Classification category. title: Short summary of the action. description: Optional detailed description. action_data: Structured JSONB payload. event_type: Original event bus message type. correlation_id: Links related events across the pipeline. signature_status: pending | signed | failed. occurred_at: When the action happened (ISO format). created_at: When the log entry was persisted (ISO format).
object
object
422
Validation Error