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

# [Anonymous] Send password reset email



## OpenAPI

````yaml /openapi/tenant.json post /api/v2/auth/reset-password-email
openapi: 3.0.1
info:
  title: Cativa Tenant API (public)
  version: public
servers:
  - url: https://apis.cativalab.digital/tenant
security: []
paths:
  /api/v2/auth/reset-password-email:
    post:
      tags:
        - Auth
      summary: '[Anonymous] Send password reset email'
      operationId: ResetPasswordEmail
      parameters:
        - name: Cativa-Customer
          in: header
          description: >-
            Tenant slug. Anonymous endpoints carry no API key to identify the
            tenant, so name it here (e.g. mycommunity). In production the tenant
            is also resolved from the request origin.
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Cativa.Identity.Application.Requests.Auth.Anonymous.ResetPasswordEmail.ResetPasswordEmailRequest
        required: true
      responses:
        '200':
          description: OK
components:
  schemas:
    Cativa.Identity.Application.Requests.Auth.Anonymous.ResetPasswordEmail.ResetPasswordEmailRequest:
      type: object
      properties:
        email:
          type: string
          nullable: true
      additionalProperties: false

````