Reset password

Update the user's password using password reset token.

POST/v3/users/{id}/reset-password

Parameters

NameTypeInDescription
id*stringpath

Request Body Schema

PropertyTypeDescriptionConstraints
newPassword*stringNew password of the user.min: 8, max: 256
token*stringPassword reset token.min: 1, max: 2048

Request Example

{
  "newPassword": "stringst",
  "token": "string"
}

Responses

204 No Content