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

# Request password reset email

> Send a password-reset email to the provided address (if an account exists). Rate-limited.



## OpenAPI

````yaml /api-reference/openapi.json post /api/auth/forget-password
openapi: 3.1.0
info:
  title: Tedro API
  version: 1.0.0
  description: REST API for the Tedro communication operations platform.
servers:
  - url: https://api.tedro.io
    description: Production
security:
  - sessionCookie: []
    workspaceId: []
paths:
  /api/auth/forget-password:
    post:
      tags:
        - Auth
      summary: Request password reset email
      description: >-
        Send a password-reset email to the provided address (if an account
        exists). Rate-limited.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthForgetPasswordBody'
      responses:
        '200':
          description: Reset email dispatched (if account exists)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthOkResponse'
        '400':
          description: Bad Request - invalid or missing parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorResponse'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthRateLimitedResponse'
      security: []
components:
  schemas:
    AuthForgetPasswordBody:
      type: object
      properties:
        email:
          type: string
          format: email
        redirectTo:
          type: string
      required:
        - email
      description: >-
        Better Auth forget-password payload (sends reset email if account
        exists)
      example:
        email: user@example.com
        redirectTo: https://app.tedro.io/reset
    AuthOkResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - ok
      required:
        - status
      description: Better Auth generic success response (forget-password, reset-password)
    ValidationErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: array
          items:
            type: object
            properties:
              path:
                type: string
              message:
                type: string
            required:
              - path
              - message
      required:
        - error
    AuthRateLimitedResponse:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    sessionCookie:
      type: apiKey
      in: cookie
      name: better-auth.session_token
      description: Session cookie set by Better Auth on sign-in.
    workspaceId:
      type: apiKey
      in: header
      name: x-workspace-id
      description: Workspace UUID. Required on all /api/* endpoints.

````