Skip to main content

NonEmployeeRequestWithoutApprovalItem

Properties

NameTypeDescriptionNotes
IdStringNon-Employee request id.[optional]
RequesterNonEmployeeIdentityReferenceWithId[optional]
AccountNameStringRequested identity account name.[optional]
FirstNameStringNon-Employee's first name.[optional]
LastNameStringNon-Employee's last name.[optional]
EmailStringNon-Employee's email.[optional]
PhoneStringNon-Employee's phone.[optional]
ManagerStringThe account ID of a valid identity to serve as this non-employee's manager.[optional]
NonEmployeeSourceNonEmployeeSourceLiteWithSchemaAttributes[optional]
VarDatamap[string]StringAdditional attributes for a non-employee. Up to 10 custom attributes can be added.[optional]
ApprovalStatusApprovalStatus[optional]
CommentStringComment of requester[optional]
CompletionDateSystem.DateTimeWhen the request was completely approved.[optional]
StartDateSystem.DateTimeNon-Employee employment start date.[optional]
EndDateSystem.DateTimeNon-Employee employment end date.[optional]
ModifiedSystem.DateTimeWhen the request was last modified.[optional]
CreatedSystem.DateTimeWhen the request was created.[optional]

Examples

  • Prepare the resource
$NonEmployeeRequestWithoutApprovalItem = Initialize-PSSailpoint.V2024NonEmployeeRequestWithoutApprovalItem  -Id ac110005-7156-1150-8171-5b292e3e0084 `
-Requester null `
-AccountName william.smith `
-FirstName William `
-LastName Smith `
-Email william.smith@example.com `
-Phone 5125555555 `
-Manager jane.doe `
-NonEmployeeSource null `
-VarData {description=Auditing} `
-ApprovalStatus null `
-Comment approved `
-CompletionDate 2020-03-24T11:11:41.139-05:00 `
-StartDate Tue Mar 24 00:00:00 UTC 2020 `
-EndDate 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
  • Convert the resource to JSON
$NonEmployeeRequestWithoutApprovalItem | ConvertTo-JSON

[Back to top]