API Reference

Episode Events

View and create episode events (timeline entries) via the Jump EHR API. Append-only audit trail for clinical episodes.

Episode events form the timeline within an episode — every status change, note, assignment, and clinical action is recorded as an event. Events are append-only and cannot be edited or deleted.

Events are append-only. PATCH and DELETE return 405. To correct an event, create a new event with event_type: "note" referencing the original.

The episode_id comes from the URL — do not include it in the request body.

GET
/episode-events/{id}

Authorization

BearerApiKey
AuthorizationBearer <token>

API key with the pk_live_ prefix. pk_test_ keys are refused (403 TEST_MODE_UNAVAILABLE) until a sandbox exists.

In: header

Path Parameters

id*string
Formatuuid

Response Body

application/json

application/json

curl -X GET "https://example.com/episode-events/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "data": {    "id": "string",    "episode_id": "string",    "event_type": "string",    "title": "string",    "description": "string",    "created_by": "string",    "created_by_type": "user",    "mentioned_users": [      "string"    ],    "extracted_tags": [      "string"    ],    "related_object_type": "string",    "related_object_id": "string",    "created_at": "string",    "updated_at": "string"  },  "meta": {    "request_id": "req_abc123"  }}