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

# Change password

> Change current admin password



## OpenAPI

````yaml docs/api-reference/general-monitoring.yaml post /profile/change-password
openapi: 3.0.3
info:
  title: Zochil General Monitoring API
  description: >
    Zochil platform general monitoring API for system administration.


    ## Authentication


    All endpoints require authentication via the `access-token` header obtained
    through login.
  version: 1.0.0
  contact:
    name: Zochil Support
    email: info@zochil.mn
  license:
    name: Proprietary
servers:
  - url: https://api.zochil.io/v3/monitoring
    description: API server
security:
  - AccessToken: []
tags:
  - name: Authentication
    description: Admin authentication and session management
  - name: Admin Management
    description: System administrator management
  - name: Profile
    description: Admin profile management
paths:
  /profile/change-password:
    post:
      tags:
        - Profile
      summary: Change password
      description: Change current admin password
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - currentPassword
                - newPassword
              properties:
                currentPassword:
                  type: string
                  description: Current password
                newPassword:
                  type: string
                  description: New password
      responses:
        '200':
          description: Password changed successfully
        '400':
          description: Invalid current password
components:
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token

````