Overview

Resets the password of a Portal user corresponding to a password reset token

Request Arguments

Name Type Description Required
resetID String The ID of the portal password reset token, corresponding to an entry in the contacts_password_link table True
newPassword String The new password to set for the Portal user associated with the reset token True

Request

{
    "resetID": "03b9f078-be35-11e9-b8a2-6003089fe26e",
    "newPassword": "abC123!"
}

Response Arguments

Name Type Description
id string The ID of the contact bean associated with the password reset token
date_modified string The new date_modified field value of the contact bean associated with the password reset token

Response

{
    'id' => '22ca551a-c82c-11e9-8af9-6003089fe26e',
    'date_modified' => '2019-08-26 18:02:31'
}

Change Log

Version Change
v11_6 Added /portal_password/reset?platform=portal PUT endpoint.