Skip to main content

NonEmployeeRequestWithoutApprovalItem

Properties

NameTypeDescriptionNotes
idstrNon-Employee request id.[optional]
requesterNonEmployeeIdentityReferenceWithId[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]
non_employee_sourceNonEmployeeSourceLiteWithSchemaAttributes[optional]
datamap[string]strAdditional attributes for a non-employee. Up to 10 custom attributes can be added.[optional]
approval_statusApprovalStatus[optional]
commentstrComment of requester[optional]
completion_datedatetimeWhen the request was completely approved.[optional]
start_datedateNon-Employee employment start date.[optional]
end_datedateNon-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_request_without_approval_item import NonEmployeeRequestWithoutApprovalItem

non_employee_request_without_approval_item = NonEmployeeRequestWithoutApprovalItem(
id='ac110005-7156-1150-8171-5b292e3e0084',
requester=sailpoint.v2024.models.non_employee_identity_reference_with_id.NonEmployeeIdentityReferenceWithId(
type = 'IDENTITY',
id = '5168015d32f890ca15812c9180835d2e', ),
account_name='william.smith',
first_name='William',
last_name='Smith',
email='[email protected]',
phone='5125555555',
manager='jane.doe',
non_employee_source=,
data={description=Auditing},
approval_status='APPROVED',
comment='approved',
completion_date='2020-03-24T11:11:41.139-05:00',
start_date='Tue Mar 24 00:00:00 UTC 2020',
end_date='Thu Mar 25 00:00:00 UTC 2021',
modified='2020-03-24T11:11:41.139-05:00',
created='2020-03-24T11:11:41.139-05:00'
)

[Back to top]