GET
/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 AuthorizationBearer <token>
In: header
Path Parameters
id*string
Auth connection ID
Query Parameters
type?string
Filter the timeline to a single event type.
Value in
- "login"
- "reauth"
- "health_check"
limit?integer
Maximum number of events to return
Range
value <= 100Default
20offset?integer
Number of events to skip
Default
0Response Body
application/json
application/json
application/json
application/json
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" }}Stream login flow events via SSE GET
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).
Exchange handoff code for JWT POST
Validates the handoff code and returns a JWT token for subsequent requests. Used by the hosted login UI.