> ## 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.

# Request Password Reset

> Send a single-use password reset link whose token is delivered in the URL fragment. The response never reveals whether an account existed.



## OpenAPI

````yaml /openapi.json post /v1/apps/{projectId}/auth/password/reset
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:
    post:
      tags:
        - appauth
      summary: Request Password Reset
      description: >-
        Send a single-use password reset link whose token is delivered in the
        URL fragment. The response never reveals whether an account existed.
      operationId: appauth.requestPasswordReset
      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:
                email:
                  type: string
                  format: email
                redirectUrl:
                  type: string
              required:
                - email
                - redirectUrl
              additionalProperties: false
      responses:
        '202':
          description: The reset request was accepted.
        '404':
          description: No such project or app-auth resource in this organization.
        '422':
          description: Invalid configuration or request.
        '429':
          description: Too many authentication attempts.
      security: []

````