Skip to main content

Lookupstep

The definition of an Identity according to the Reassignment Configuration service

Properties

NameTypeDescriptionNotes
reassigned_to_idstrThe ID of the Identity who work is reassigned to[optional]
reassigned_from_idstrThe ID of the Identity who work is reassigned from[optional]
reassignment_typeReassignmenttypeenum[optional]
}

Example

from sailpoint.work_reassignment.models.lookupstep import Lookupstep

lookupstep = Lookupstep(
reassigned_to_id='869320b6b6f34a169b6178b1a865e66f',
reassigned_from_id='51948a8f306a4e7a9a6f8f5d032fa59e',
reassignment_type='AUTOMATIC_REASSIGNMENT'
)

[Back to top]