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

# Complete Password Reset

> Consume a single-use reset token, replace the password hash, and revoke existing sessions.



## OpenAPI

````yaml /openapi.json post /v1/apps/{projectId}/auth/password/reset/verify
openapi: 3.1.0
info:
  title: Korve API
  version: 0.1.0
  description: >-
    Typed control plane for deploying applications and explicitly provisioning
    their managed infrastructure.
servers:
  - url: https://api.korve.dev
security: []
paths:
  /v1/apps/{projectId}/auth/password/reset/verify:
    post:
      tags:
        - appauth
      summary: Complete Password Reset
      description: >-
        Consume a single-use reset token, replace the password hash, and revoke
        existing sessions.
      operationId: appauth.completePasswordReset
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: string
          description: The project id (UUID) or globally unique project slug.
      requestBody:
        required: true
        x-korve-max-bytes: 1048576
        content:
          application/json:
            schema:
              type: object
              properties:
                token:
                  type: string
                password:
                  type: string
              required:
                - token
                - password
              additionalProperties: false
      responses:
        '200':
          description: Password replaced and sessions revoked.
        '401':
          description: The reset link is invalid, expired, or already consumed.
        '422':
          description: The password does not satisfy project policy.
        '429':
          description: Too many authentication attempts.
      security: []

````