IonWarp logoIonWarp
Get started
IonWarp Docs
Collections

Timeline Events

The append-only record of what happened to an object.

Base path /api/v1/timeline-events on https://ionwarp.com. Authenticate with Authorization: Bearer $DASH_API_KEY and name the project with the Project-ID header. Writes are validated in declared mode; an operation this resource does not declare answers 405 operation_not_supported.

List timeline events

GET /api/v1/timeline-events

curl "https://ionwarp.com/api/v1/timeline-events?subject_id=pr-630" \
  -H "Authorization: Bearer $DASH_API_KEY" \
  -H "Project-ID: pr_acme"
What happened on PR {id} today?
data_query {
  "collection": "timeline_events",
  "where": {
    "subject_id": "pr-630"
  }
}

Returns a paginated list of timeline-event objects, newest first.

{
  "object": "list",
  "data": [
    {
      "object": "timeline-event",
      "id": "obj_123",
      "subject_id": "pr-630",
      "event": "PR #630 — review completed",
      "severity": "info",
      "created_at": "2026-07-25T12:00:00.000Z",
      "updated_at": "2026-07-25T12:00:00.000Z"
    }
  ],
  "has_more": false,
  "next_cursor": null
}

Parameters

ParameterTypeKindDescription
subject_idstringfilterId of the object this entry happened to.
severitystringfilterHow the entry is toned on the timeline — routine, warning, or failure.
qstringsearchFree-text search across event.
sortstringsortOne of occurred_at; prefix with - to reverse.
limitnumberpageRows to return, 1–100. Defaults to 20.
cursorstringpagenext_cursor from the previous page.

Retrieve a timeline-event

GET /api/v1/timeline-events/learning-tests-run-under-bun

curl "https://ionwarp.com/api/v1/timeline-events/learning-tests-run-under-bun" \
  -H "Authorization: Bearer $DASH_API_KEY" \
  -H "Project-ID: pr_acme"
Open the timeline-event {id}
data_get {
  "collection": "timeline_events",
  "object_id": "learning-tests-run-under-bun"
}

Returns the timeline-event object.

{
  "object": "timeline-event",
  "id": "obj_123",
  "subject_id": "pr-630",
  "event": "PR #630 — review completed",
  "severity": "info",
  "created_at": "2026-07-25T12:00:00.000Z",
  "updated_at": "2026-07-25T12:00:00.000Z"
}

Parameters

ParameterTypeKindDescription
idstringpathThe timeline-event's id or slug.

What comes back (read-only)

Every timeline-event carries the envelope below. The fields under it are computed or stamped by the platform — they are returned, never sent.

FieldTypeDescription
objectstringAlways timeline-event.
idstringStable object id. Also accepted in place of slug on any path.
slugstringURL-safe name, unique within the collection.
created_atstringISO-8601 timestamp of the first write.
updated_atstringISO-8601 timestamp of the most recent write. The cursor sorts on this.
subject_idstringId of the object this entry happened to.
eventstringWhat happened, in the words shown on the timeline.
severitystringHow the entry is toned on the timeline — routine, warning, or failure.
occurred_atstringWhen it happened (ISO 8601).

Errors

Failures use { error: { type, code, message, param } }. The full code table is generated at Error Codes.

On this page

IonWarp logoIonWarp

Ready to build? Connect an agent and go — no credit card needed to start.

Get startedSee our plans