> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tktchurch.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List my sessions

> Device, IP, last-used per session.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/sessions
openapi: 3.0.1
info:
  title: TKTChurch Identity (TKTAuth)
  version: v1
  description: >-
    Authorization server at prod-auth.tktchurch.com. Public OAuth2/OIDC
    endpoints need no auth; /api/v1 self routes need a Bearer access token
    issued to the user. the listed resource:action permission. Management lists
    return `{ metadata: { total, page, per }, items: [...] }`.
servers:
  - url: https://prod-auth.tktchurch.com
    description: Production
  - url: http://localhost:8080
    description: Local backchannel
  - url: https://calendar.tktchurch.net
    description: Calendar (Events)
security: []
tags:
  - name: authentication
    description: >-
      OAuth2 (RFC 6749), PAR (9126), revocation/introspection (7009/7662),
      device flow (8628), OIDC, registration (7591), sign-in flows, password
      reset and federated identity.
  - name: users
    description: >-
      Signed-in profile, identities, recovery, membership and Member Pass.
      Bearer only.
  - name: membership
    description: Membership matching, Member Pass, invite claims and family join codes.
  - name: sessions
    description: List, inspect and revoke your own sessions. Bearer only.
  - name: security
    description: TOTP setup and passkey management. Bearer only.
  - name: consents-privacy
    description: Your consent grants, privacy notices, data requests and exports.
  - name: family
    description: >-
      Families, dependents and guardian delegation. Bearer; delegation needs
      guardian:act_as.
  - name: system
    description: Liveness, readiness, build info and public maintenance status.
  - name: events
    description: >-
      Public church events listing, search and detail on calendar.tktchurch.net.
      No auth.
paths:
  /api/v1/sessions:
    get:
      tags:
        - sessions
      summary: List my sessions
      description: Device, IP, last-used per session.
      operationId: listSessions
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Session'
              example:
                - id: d1e5a9c3-7b2d-4f8e-9a0c-fedcba987654
                  device_name: Amina's MacBook
                  ip_address: 102.89.32.10
                  is_current: true
                  is_trusted: true
                  last_used_at: '2026-09-22T14:30:00Z'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: invalid_token
                error_description: Access token is invalid or malformed
      security:
        - bearerAuth: []
      x-codeSamples:
        - lang: Swift
          label: Swift (sessions)
          source: >-
            import Foundation


            var request = URLRequest(url: URL(string:
            "https://prod-auth.tktchurch.com/api/v1/sessions")!)

            request.setValue("Bearer \(accessToken)", forHTTPHeaderField:
            "Authorization")

            let (data, _) = try await URLSession.shared.data(for: request)

            let sessions = try JSONDecoder().decode([Session].self, from: data)

            for s in sessions { print(s.deviceName, s.isCurrent) }
components:
  schemas:
    Session:
      type: object
      properties:
        id:
          type: string
          format: uuid
        device_name:
          type: string
        ip_address:
          type: string
        is_current:
          type: boolean
        is_trusted:
          type: boolean
        last_used_at:
          type: string
          format: date-time
    Error:
      type: object
      required:
        - error
        - error_description
      properties:
        error:
          type: string
          description: Machine-readable code
        error_description:
          type: string
          description: Human-readable detail
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````