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

# Reset password



## OpenAPI

````yaml /openapi.json post /auth/reset-password
openapi: 3.0.0
info:
  title: Uptime Monitor API
  description: >-
    API documentation for the Uptime Monitor application. This API allows users
    to create and manage website monitors, perform checks, and view statistics.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.justanotheruptime.com
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: projects
    description: Project management endpoints
  - name: monitors
    description: Monitor management endpoints
  - name: checks
    description: Check-related endpoints
  - name: statistics
    description: Monitor statistics endpoints
paths:
  /auth/reset-password:
    post:
      tags:
        - Authentication
      summary: Reset password
      operationId: AuthController_resetPassword
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResetPasswordDto'
      responses:
        '200':
          description: Password reset successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PasswordResetResponseDto'
        '401':
          description: Invalid or expired reset token
components:
  schemas:
    ResetPasswordDto:
      type: object
      properties:
        token:
          type: string
          example: reset-token-uuid
        newPassword:
          type: string
          example: newpassword123
      required:
        - token
        - newPassword
    PasswordResetResponseDto:
      type: object
      properties:
        message:
          type: string
          example: Password has been reset successfully
      required:
        - message

````