Skip to content

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

limit

Items per page (max 100)

integer
default: 50 >= 1 <= 100

Items per page (max 100)

offset

Number of items to skip

integer

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
items
required
Array<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
action_data
required
object
key
additional properties
any
action_type
required
string
agent_name
required
Any of:
string
agent_role
required
string
correlation_id
required
Any of:
string
created_at
required
string
description
required
Any of:
string
event_type
required
string
id
required
string
occurred_at
required
string
signature_status
required
string
title
required
string
limit
required
integer
offset
required
integer
total
required
integer

422

Validation Error

object
detail
Array<object>
object
ctx
object
input
loc
required
Array
msg
required
string
type
required
string