Auth

Request password reset

Send a password reset email to the specified address. Always returns success to prevent email enumeration.

post/api/auth/forgot-password

Request body

emailstring required

Example request

{
  "email": "john@company.com"
}

Response

Reset email sent if account exists

messagestring required

Example response

{
  "message": "Operation completed successfully"
}

Changes

Changed in 1 of the 2 revisions of this API.1

    • added the media type application/json for the response with the status 200

      response-media-type-added