Skip to main content

Passwordstatus

Properties

NameTypeDescriptionNotes
request_idstrThe password change request ID[optional]
stateEnum [ 'IN_PROGRESS', 'FINISHED', 'FAILED' ]Password change state[optional]
errors[]strThe errors during the password change request[optional]
source_ids[]strList of source IDs in the password change request[optional]
}

Example

from sailpoint.password_management.models.passwordstatus import Passwordstatus

passwordstatus = Passwordstatus(
request_id='089899f13a8f4da7824996191587bab9',
state='IN_PROGRESS',
errors=["The password change payload is invalid"],
source_ids=["2c918083746f642c01746f990884012a"]
)

[Back to top]