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

# Reset Password

> Reset the password using the reset token.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json post /api/v1/users/authorization/reset-password
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/users/authorization/reset-password:
    post:
      tags:
        - Users
      summary: Reset Password
      description: Reset the password using the reset token.
      operationId: reset_password_api_v1_users_authorization_reset_password_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PasswordResetConfirmSchema'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PasswordResetConfirmSchema:
      properties:
        token:
          type: string
          title: Token
        new_password:
          type: string
          title: New Password
        new_password_confirm:
          type: string
          title: New Password Confirm
      type: object
      required:
        - token
        - new_password
        - new_password_confirm
      title: PasswordResetConfirmSchema
      description: Schema for password reset confirmation.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````