Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/NonEmployeeRequestBody.md
2025-02-20 12:59:19 -05:00

1.8 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-non-employee-request-body NonEmployeeRequestBody NonEmployeeRequestBody NonEmployeeRequestBody pythonsdk
python
Python
sdk
NonEmployeeRequestBody
BetaNonEmployeeRequestBody
/tools/sdk/python/beta/models/non-employee-request-body
SDK
Software Development Kit
NonEmployeeRequestBody
BetaNonEmployeeRequestBody

NonEmployeeRequestBody

Properties

Name Type Description Notes
account_name str Requested identity account name. [required]
first_name str Non-Employee's first name. [required]
last_name str Non-Employee's last name. [required]
email str Non-Employee's email. [required]
phone str Non-Employee's phone. [required]
manager str The account ID of a valid identity to serve as this non-employee's manager. [required]
source_id str Non-Employee's source id. [required]
data map[string]str Additional attributes for a non-employee. Up to 10 custom attributes can be added. [optional]
start_date datetime Non-Employee employment start date. [required]
end_date datetime Non-Employee employment end date. [required]
}

Example

from sailpoint.beta.models.non_employee_request_body import NonEmployeeRequestBody

non_employee_request_body = NonEmployeeRequestBody(
account_name='william.smith',
first_name='William',
last_name='Smith',
email='william.smith@example.com',
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]