Skip to main content

NonEmployeeRequest

Properties

NameTypeDescriptionNotes
IdStringNon-Employee source id.[optional]
SourceIdStringSource Id associated with this non-employee source.[optional]
NameStringSource name associated with this non-employee source.[optional]
DescriptionStringSource description associated with this non-employee source.[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]
NonEmployeeSourceNonEmployeeSourceLite[optional]
VarDatamap[string]StringAdditional attributes for a non-employee. Up to 10 custom attributes can be added.[optional]
ApprovalItems[]NonEmployeeApprovalItemBaseList of approval item for the request[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
$NonEmployeeRequest = Initialize-PSSailpoint.BetaNonEmployeeRequest  -Id a0303682-5e4a-44f7-bdc2-6ce6112549c1 `
-SourceId 2c91808568c529c60168cca6f90c1313 `
-Name Retail `
-Description Source description `
-AccountName william.smith `
-FirstName William `
-LastName Smith `
-Email william.smith@example.com `
-Phone 5125555555 `
-Manager jane.doe `
-NonEmployeeSource null `
-VarData {description=Auditing} `
-ApprovalItems null `
-ApprovalStatus null `
-Comment approved `
-CompletionDate 2020-03-24T11:11:41.139-05:00 `
-StartDate 2020-03-24T00:00-05:00 `
-EndDate 2021-03-25T00:00-05:00 `
-Modified 2020-03-24T11:11:41.139-05:00 `
-Created 2020-03-24T11:11:41.139-05:00
  • Convert the resource to JSON
$NonEmployeeRequest | ConvertTo-JSON

[Back to top]