v2

latestOpenAPI 3.0.0raw.githubusercontent.com2026-02-16143114179.4 KB
Auth

Reset password with token

Set a new password using the token received via email.

post/api/auth/reset-password

Request body

tokenstring required

Password reset token

newPasswordstring required

New password (min 8 characters)

Example request

{
  "newPassword": "newSecurePassword123"
}

Response

Password reset successful

messagestring required

Example response

{
  "message": "Operation completed successfully"
}