v1

latestOpenAPI 3.1.0MIT2026-08-0652106151.4 KB
authentication

Forgot Password - Use in case you don´t remember your turboSMTP password

This endpoint will allow you to get an email that will help you reset your turboSMTP password

In your password reset email you will find:

  • A Reset Password button that will take you to the password reset form on turboSMTP website.
  • A secret token to be used to reset the password via /authentication/forgot-password. Note: Token is vaid for 1 hour.
post/forgot-password

Request body

emailstring email required

turboSMTP account email address.

Example request

{
  "email": "developer@turboSMTP.com"
}

Response

Success

Password reset email sent if the address is registered. Always returns success to prevent email enumeration.

message'success'

Example response

{
  "message": "success"
}