v1

latestOpenAPI 3.1.0MIT2026-08-0652106151.4 KB
authentication

Forgot Password - change password

This endpoint allows you to reset your password by using a password reset token

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/forgot-password

Request body

passwordstring required

New Password to be used.

confirm_passwordstring required

New Password to be used.

tokenstring required

Reset Password Token

Example request

{
  "password": "SMBBBf4J686P",
  "confirm_password": "SMBBBf4J686P",
  "token": "781d4b44aaf5de86dc0a7e1ca2dc409f"
}

Response

Sucess

Password reset sucessfully.

message'success'

Example response

{
  "message": "success"
}