Resets a password

Endpoint for changing a password using a token.

Request
Request Body schema: application/json
token
required
string

The token received via e-mail.

newPassword
required
string

The new password that will be set to the user associated with the token.

Responses
204

No Content

400

Bad Request

403

Forbidden

404

Not Found

500

Server Error

post/auth/password/reset
Request samples
application/json
{
  • "token": "string",
  • "newPassword": "string"
}