NonEmployeeRecord
Properties
| Name | Type | Description | Notes | 
|---|---|---|---|
| Id | String | Non-Employee record id. | [optional] | 
| AccountName | String | Requested identity account name. | [optional] | 
| FirstName | String | Non-Employee's first name. | [optional] | 
| LastName | String | Non-Employee's last name. | [optional] | 
| String | Non-Employee's email. | [optional] | |
| Phone | String | Non-Employee's phone. | [optional] | 
| Manager | String | The account ID of a valid identity to serve as this non-employee's manager. | [optional] | 
| SourceId | String | Non-Employee's source id. | [optional] | 
| VarData | map[string]String | Additional attributes for a non-employee. Up to 10 custom attributes can be added. | [optional] | 
| StartDate | System.DateTime | Non-Employee employment start date. | [optional] | 
| EndDate | System.DateTime | Non-Employee employment end date. | [optional] | 
| Modified | System.DateTime | When the request was last modified. | [optional] | 
| Created | System.DateTime | When the request was created. | [optional] | 
Examples
- Prepare the resource
 
$NonEmployeeRecord = Initialize-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