Skip to main content

NonEmployeeRecord

Properties

NameTypeDescriptionNotes
IdStringNon-Employee record id.[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]
SourceIdStringNon-Employee's source id.[optional]
VarDatamap[string]StringAdditional attributes for a non-employee. Up to 10 custom attributes can be added.[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
$NonEmployeeRecord = Initialize-PSSailpoint.V2024NonEmployeeRecord  -Id ef38f94347e94562b5bb8424a56397d8 `
-AccountName Abby.Smith `
-FirstName William `
-LastName Smith `
-Email william.smith@example.com `
-Phone 5125555555 `
-Manager jane.doe `
-SourceId 2c91808568c529c60168cca6f90c1313 `
-VarData {description=Auditing} `
-StartDate 2019-08-23T18:52:59.162Z `
-EndDate 2020-08-23T18:52:59.162Z `
-Modified 2019-08-23T18:52:59.162Z `
-Created 2019-08-23T18:40:35.772Z
  • Convert the resource to JSON
$NonEmployeeRecord | ConvertTo-JSON

[Back to top]