Skip to main content

NonEmployeeRequestBody

Properties

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

Example

from sailpoint.v3.models.non_employee_request_body import NonEmployeeRequestBody

non_employee_request_body = NonEmployeeRequestBody(
account_name='william.smith',
first_name='William',
last_name='Smith',
email='[email protected]',
phone='5125555555',
manager='jane.doe',
source_id='2c91808568c529c60168cca6f90c1313',
data={description=Auditing},
start_date='2020-03-24T00:00-05:00',
end_date='2021-03-25T00:00-05:00'
)

[Back to top]