Reset password

Reset the password of an unauthenticated user. Use the token received from the forgot password email.

Request
path Parameters
token
required
string (Token)

The token generated for a registered user for password reset

Example: zskMdo9EBahb4lx4wX3GQKmxC6yOZImB1WuRa8Bbqtt
Request Body schema: application/json
newPassword
required
string <password> (Password) >= 8 characters

The password must contain at least eight characters, including one upper-case letter, one lower-case letter, and one number. The password may consist of a combination of letters, numbers, and special characters.

Responses
200

Successful operation

400

Bad request error

401

Unauthorized error

403

Forbidden error

404

Not found error

500

Internal server error

post/reset-password/{token}
Request samples
application/json
{
  • "newPassword": "123Abcd!"
}
Response samples
application/json
{
  • "requestId": "df5fg-45fgfdsg-45fg-45454"
}