Skip to main content

ApprovalComment

Properties

NameTypeDescriptionNotes
CommentStringComment provided either by the approval requester or the approver.[required]
TimestampSystem.DateTimeThe time when this comment was provided.[required]
UserStringName of the user that provided this comment.[required]
IdStringId of the user that provided this comment.[required]
ChangedToStatusEnum [ "PENDING_APPROVAL", "APPROVED", "REJECTED" ]Status transition of the draft.[required]

Examples

  • Prepare the resource
$ApprovalComment = Initialize-PSSailpoint.V2024ApprovalComment  -Comment Approval comment `
-Timestamp 2021-05-11T22:23:16Z `
-User user.name `
-Id 549bf881-1ac4-4a64-9acf-6014e8a3a887 `
-ChangedToStatus PENDING_APPROVAL
  • Convert the resource to JSON
$ApprovalComment | ConvertTo-JSON

[Back to top]