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

# User Logout

> Handles user logout process including session termination and client logout status update.



## OpenAPI

````yaml get /logout
openapi: 3.0.0
info:
  title: Example for response examples value
  version: '1.0'
servers:
  - url: https://api.helpyousponsor.com/v1
    description: Production
security: []
paths:
  /logout:
    get:
      tags:
        - User
      summary: User Logout
      description: >-
        Handles user logout process including session termination and client
        logout status update.
      operationId: getLogout
      parameters:
        - name: client_id
          in: header
          description: Client ID to identify the user's client session
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Logout successful
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: Successfully logged out
                  status:
                    type: string
                    example: success
                type: object
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      description: 'API key generated from Developer Settings. Format: hys_...'
      name: X-HYS-API-Key
      in: header

````