v1

latestOpenAPI 3.0.3raw.githubusercontent.com2024-10-2916802.4 MB
🔐 Authentication

Reset forgotten password

The API endpoint enables users to reset their password through the password reset email.

By providing the new password and the password reset token obtained from the URL, users can securely reset their password and regain access to their account.

This functionality ensures a secure and streamlined password reset process, allowing users to update their password conveniently and protect their account from unauthorized access.

post/users/reset-password/{resetToken}

Request body

newPasswordstring

Example request

{
  "newPassword": "test@123"
}

Response

Reset forgotten password

dataobject
messagestring
statusCodenumber
successboolean

Example response

{
  "message": "Password reset successfully",
  "statusCode": 200,
  "success": true
}