Files
developer.sailpoint.com/docs/connectivity/saas-connectivity/connector-commands/change-password.md
darrell-thobe-sp 2cd5ccfc81 Prettified Code!
2024-04-18 10:31:05 +00:00

1.8 KiB

id, title, pagination_label, sidebar_label, keywords, description, slug, tags
id title pagination_label sidebar_label keywords description slug tags
change-password Change Password Change Password Change Password
connectivity
connectors
change password
Change password for an account on the source. /connectivity/saas-connectivity/commands/change-password
Connectivity
Connector Command
Input/Output Data Type
Input StdChangePasswordInput
Output StdChangePasswordOutput

Example StdChangePasswordInput

"identity": "john.doe",
"key": {
    "simple": {
        "id": "john.doe"
    }
},
"password": "newPassword"

Example StdChangePasswordOutput

{
}

Description

The change password command is triggered in ISC when a user changes their password through ISC. When this occurs, if your source has change password enabled, then you can change the user password on the source system through ISC.

The Provisioning Plan

The change password command sends the password change event to your connector whenever a user changes their password through the Password Manager. Handling this even is as simple as implementing a method on the source system that updates a users password

.stdChangePassword(async (context: Context, input: StdChangePasswordInput, res: Response<StdChangePasswordOutput>) => {
    res.send(await myClient.changePassword(input.identity))
})

Testing in Identity Security Cloud

In order to test in Identity Security Cloud, the source application must be configured so that it is able to accept password change requests through the Password Manager. Once this setup is complete, you can log in as a user whose identity exists in the configured application and change their password in the Password Manager.