---
title: "Get aggregated timeline events"
method: GET
path: "/aggregated-events"
tags: ["Timeline"]
---

# Get aggregated timeline events

`GET /aggregated-events`

Returns all timeline events associated with a single activeflow execution.
Query by activeflow_id directly, or by call_id (which resolves to the call's activeflow).
Exactly one of activeflow_id or call_id must be provided.

## Query parameters

- `activeflow_id` string, uuid
- `call_id` string, uuid
- `page_size` integer
- `page_token` string

## Response `200`

A list of aggregated timeline events sorted by timestamp descending.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` TimelineManagerEvent[]
    - `timestamp` string, date-time — When the event occurred
    - `event_type` string — Type of event (e.g., call_created, conference_started)
    - `data` object — Event data in WebhookMessage format

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/revisions/79e779080bcc/schema)
