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

# Confirm Password Reset

> Verify a single-use password reset token, set the new password, bump the token version, auto-verify the email, and revoke all sessions. Returns 400 on a stale link.



## OpenAPI

````yaml /openapi.json post /api/v1/auth/password/reset/confirm
openapi: 3.1.0
info:
  description: Change Impact Engine for multi-repo systems
  title: Riftmap
  version: 1.12.3
servers: []
security: []
paths:
  /api/v1/auth/password/reset/confirm:
    post:
      tags:
        - auth
      summary: Confirm Password Reset
      description: >-
        Verify a single-use password reset token, set the new password, bump the
        token version, auto-verify the email, and revoke all sessions. Returns
        400 on a stale link.
      operationId: confirm_password_reset_api_v1_auth_password_reset_confirm_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PasswordResetConfirmBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                title: >-
                  Response Confirm Password Reset Api V1 Auth Password Reset
                  Confirm Post
                type: object
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    PasswordResetConfirmBody:
      properties:
        new_password:
          title: New Password
          type: string
        token:
          title: Token
          type: string
      required:
        - token
        - new_password
      title: PasswordResetConfirmBody
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````