Skip to main content

NonEmployeeRecord

Properties

NameTypeDescriptionNotes
idstrNon-Employee record id.[optional]
account_namestrRequested identity account name.[optional]
first_namestrNon-Employee's first name.[optional]
last_namestrNon-Employee's last name.[optional]
emailstrNon-Employee's email.[optional]
phonestrNon-Employee's phone.[optional]
managerstrThe account ID of a valid identity to serve as this non-employee's manager.[optional]
source_idstrNon-Employee's source id.[optional]
datamap[string]strAdditional attributes for a non-employee. Up to 10 custom attributes can be added.[optional]
start_datedatetimeNon-Employee employment start date.[optional]
end_datedatetimeNon-Employee employment end date.[optional]
modifieddatetimeWhen the request was last modified.[optional]
createddatetimeWhen the request was created.[optional]
}

Example

from sailpoint.v2024.models.non_employee_record import NonEmployeeRecord

non_employee_record = NonEmployeeRecord(
id='ef38f94347e94562b5bb8424a56397d8',
account_name='Abby.Smith',
first_name='William',
last_name='Smith',
email='[email protected]',
phone='5125555555',
manager='jane.doe',
source_id='2c91808568c529c60168cca6f90c1313',
data={description=Auditing},
start_date='2019-08-23T18:52:59.162Z',
end_date='2020-08-23T18:52:59.162Z',
modified='2019-08-23T18:52:59.162Z',
created='2019-08-23T18:40:35.772Z'
)

[Back to top]