Skip to main content

NonEmployeeSourceRequestBody

Properties

NameTypeDescriptionNotes
NameStringName of non-employee source.[required]
DescriptionStringDescription of non-employee source.[required]
OwnerNonEmployeeIdnUserRequest[required]
ManagementWorkgroupStringThe ID for the management workgroup that contains source sub-admins[optional]
Approvers[]NonEmployeeIdnUserRequestList of approvers.[optional]
AccountManagers[]NonEmployeeIdnUserRequestList of account managers.[optional]

Examples

  • Prepare the resource
$NonEmployeeSourceRequestBody = Initialize-PSSailpoint.V2024NonEmployeeSourceRequestBody  -Name Retail `
-Description Source description `
-Owner null `
-ManagementWorkgroup 123299 `
-Approvers null `
-AccountManagers null
  • Convert the resource to JSON
$NonEmployeeSourceRequestBody | ConvertTo-JSON

[Back to top]