v1

latestOpenAPI 3.0.02026-07-2422987517.5 KB
User

Send a password reset email

Sends a Firebase password-reset link to the given email. No authentication required (security: []) — it is called from the public "forgot password" flow. It is not company-scoped.

To avoid account enumeration the endpoint always responds { success: true } when the email is unknown or when Firebase rejects it. Rate-limited to 1 request per minute.

post/v1/users/send_password_reset_email

Request body

emailstring email required
continue_urlstring uri

Optional URL to redirect to after the reset is completed.

Response

Reset email queued (or silently ignored for unknown emails).

successboolean

Example response

{
  "success": true
}