v1

latestOpenAPI 3.1.02026-07-174824.1 KB
Dashboard

Paginated stewardship activity feed

Returns recent stewardship events across all packages, ordered by most recent first. Used to populate the activity feed on the Overview tab. The frontend groups items by day using createdAt.

get/ossprey/activity

Query parameters

pageinteger
pageSizeinteger

Response

Paginated activity feed.

totalinteger required
pageinteger required
pageSizeinteger required

Example response

{
  "rows": [
    {
      "id": "9182736",
      "stewardshipId": "4501",
      "packagePurl": "pkg:npm/minimist@1.2.6",
      "packageName": "minimist",
      "packageEcosystem": "npm",
      "actorUserId": "auth0|abc123",
      "actorName": "auth0|abc123",
      "activityType": "escalation",
      "content": "Escalated with resolution path: right_of_first_refusal"
    }
  ],
  "total": 142,
  "page": 1,
  "pageSize": 25
}