Get auth connection event timeline
Returns a chronological timeline of events for an auth connection — login attempts, automatic re-auth attempts, and health checks. Events are returned newest-first.
/auth/connections/{id}/timelineReturns a chronological timeline of events for an auth connection — login attempts, automatic re-auth attempts, and health checks. Events are returned newest-first.
Authorization
bearerAuth In: header
Path Parameters
Auth connection ID
Query Parameters
Filter the timeline to a single event type.
Value in
- "login"
- "reauth"
- "health_check"
Maximum number of events to return
value <= 10020Number of events to skip
0Response
Event timeline for the auth connection
A single event in an auth connection's history — a login attempt, an automatic re-auth attempt, or a health check.
curl -X GET "https://example.com/auth/connections/string/timeline"[ { "type": "login", "id": "string", "timestamp": "2019-08-24T14:15:22Z", "status": "IN_PROGRESS", "previous_status": "AUTHENTICATED", "step": "INITIALIZED", "error_code": "string", "error_message": "string", "website_error": "string", "browser_session_id": "string", "replay_id": "string", "updated_at": "2019-08-24T14:15:22Z" }]{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}getStream login flow events via SSE
Establishes a Server-Sent Events (SSE) stream that delivers real-time login flow state updates. The stream terminates automatically once the flow reaches a terminal state (SUCCESS, FAILED, EXPIRED, CANCELED).
postExchange handoff code for JWT
Validates the handoff code and returns a JWT token for subsequent requests. Used by the hosted login UI.