POST /a/auth/reset-password

Finish up the reset password process by providing the unique token

Body Parameters

Name Description Type Required
NewPassword New password to be stored for this user string
ResetPasswordToken Token generated by the previous step of the reset password workflow string
UserLogin User Login string

Body Example

{
  "NewPassword": "string",
  "ResetPasswordToken": "string",
  "UserLogin": "string"
}

Response Example (200)

Response Type /definitions/restResetPasswordResponse

{
  "Message": "string",
  "Success": true
}
Auto generated by Pydio Cells Enterprise Distribution v4.3.1 on 14-Nov-2023
Back to top