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

# Update User Activity

> Updates the user's lastSeenAt timestamp to track online status

<Note>This is not being used currently.</Note>


## OpenAPI

````yaml POST /users/update-activity
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /users/update-activity:
    post:
      summary: Update User Activity
      description: Updates the user's lastSeenAt timestamp to track online status
      responses:
        '200':
          description: Activity updated successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  lastSeenAt:
                    type: number

````