Skip to main content

NonEmployeeApprovalItem

Properties

NameTypeDescriptionNotes
IdStringNon-Employee approval item id[optional]
ApproverNonEmployeeIdentityReferenceWithId[optional]
AccountNameStringRequested identity account name[optional]
ApprovalStatusApprovalStatus[optional]
ApprovalOrderDoubleApproval order[optional]
CommentStringcomment of approver[optional]
ModifiedSystem.DateTimeWhen the request was last modified.[optional]
CreatedSystem.DateTimeWhen the request was created.[optional]
NonEmployeeRequestNonEmployeeRequestLite[optional]

Examples

  • Prepare the resource
$NonEmployeeApprovalItem = Initialize-PSSailpoint.V3NonEmployeeApprovalItem  -Id 2c1e388b-1e55-4b0a-ab5c-897f1204159c `
-Approver null `
-AccountName test.account `
-ApprovalStatus null `
-ApprovalOrder 1 `
-Comment I approve `
-Modified 2019-08-23T18:52:59.162Z `
-Created 2019-08-23T18:40:35.772Z `
-NonEmployeeRequest null
  • Convert the resource to JSON
$NonEmployeeApprovalItem | ConvertTo-JSON

[Back to top]