ChangePassword
Changes the password of your account.
Stored Procedure-Specific Information
Zendesk allows only a small subset of columns to be used in the EXEC query. These columns can typically only be used with the = operator.
For example:
EXECUTE ChangePassword UserId = '10478872117020', OldPassword = 'abcd@123', NewPassword = 'wxyz@321'
Input
| Name | Type | Required | Description |
| UserId | Long | True | The Id of the user whose password is being changed. |
| OldPassword | String | True | The current password for the account. |
| NewPassword | String | True | The new password for the account. |
Result Set Columns
| Name | Type | Description |
| Success | String | Returns true if the password change completes successfully. |