v1

latestOpenAPI 3.1.0MIT2026-08-0652106151.4 KB
authentication

Change turboSMTP password

This endpoint allows you to change your current password

Note: Only ApiKeyAuth is supported. ConsumerKey/ConsumerSecret authentication will return 403.

PASSWORD RULES

  • Passwords must have at least 10 characters.
  • At least one character must be uppercase.
  • At least one character must be lowercase.
  • At least one character must be numeric.
put/change-password

Request body

current_passwordstring required

Current Password.

passwordstring required

New Password to be used.

confirm_passwordstring required

New Password to be used.

Example request

{
  "current_password": "6SwHbc96dyE8",
  "password": "SMkhhf4J686P",
  "confirm_password": "SMkhhf4J686P"
}

Response

Sucess

Password changed sucessfully.

message'success'

Example response

{
  "message": "success"
}