GET/auth/connections/{id}/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.

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

Rangevalue <= 100
Default20
offset?integer

Number of events to skip

Default0

Response 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"  }]