---
title: "Journey flow change activity feed"
method: GET
path: "/api/journey/activity"
tags: ["journey"]
---

# Journey flow change activity feed

`GET /api/journey/activity`

Append-only feed of admin changes to steps, contents and extra-step templates (newest first). Optional filters.

## Query parameters

- `track_code` string, nullable — Filter by track.
- `step_code` string, nullable — Filter by step (includes its content events).
- `content_id` string, nullable — Filter by a single content.
- `action` string, nullable — Filter by action (e.g. content_updated).
- `entity_type` string, nullable — Filter: step | content | extra_step_template | media_template.
- `from` string, date, nullable — Start date (YYYY-MM-DD), inclusive.
- `to` string, date, nullable — End date (YYYY-MM-DD), inclusive.
- `limit` integer — Page size.
- `offset` integer — Page offset.

## Response `200`

Successful Response

- FlowActivityResponse — Journey flow activity feed page, most recent first.
  - `items` FlowActivityItem[], required — Activity entries, newest first
    - `action` string, required — FlowActivityAction value
    - `entity_type` string, required — step | content | extra_step_template
    - `entity_ref` string, required — step_code | content_id | template id | track_code
    - `track_code` string, nullable — Track of the entity; null for templates
    - `step_code` string, nullable — Own/parent step; null for templates and steps_reordered
    - `entity_title` string, required — Title at event time
    - `actor_user_id` string, nullable — Who made the change
    - `actor_name` string, nullable — Display name of the actor
    - `created_at` string, date-time, required — When the change happened
    - `before` unknown
    - `after` unknown
    - `changed_fields` string[] — Keys that changed (updates)
  - `total` integer, required — Total entries matching the filters (across all pages)
  - `limit` integer, required — Page size used
  - `offset` integer, required — Offset used

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/corabea/apis/corabea-api.md) · [All operations](https://skmtc.dev/corabea/apis/corabea-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/corabea/corabea-api/revisions/13c1bce1bdc4/schema)
