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

# Session Heartbeat

> Update last_active_at for the current session.

In this in-memory impl we patch the membership record's last_active_at
so the workspace members list reflects recent activity.



## OpenAPI

````yaml /openapi.json post /v1/auth/session/heartbeat
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/auth/session/heartbeat:
    post:
      tags:
        - auth
      summary: Session Heartbeat
      description: |-
        Update last_active_at for the current session.

        In this in-memory impl we patch the membership record's last_active_at
        so the workspace members list reflects recent activity.
      operationId: session_heartbeat_v1_auth_session_heartbeat_post
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````