Skip to main content

Approvalreassignmenthistory

Properties

NameTypeDescriptionNotes
CommentIDStringUnique identifier for the comment associated with the reassignment.[optional]
ReassignedFromApprovalidentity[optional]
ReassignedToApprovalidentity[optional]
ReassignerApprovalidentity[optional]
ReassignmentDateSystem.DateTimeDate and time when the reassignment occurred.[optional]
ReassignmentTypeEnum [ "ESCALATION", "MANUAL_REASSIGNMENT", "AUTO_REASSIGNMENT" ]Type of reassignment, such as escalation or manual reassignment.[optional]

Examples

  • Prepare the resource
$Approvalreassignmenthistory = Initialize-Approvalreassignmenthistory  -CommentID f47ac10b-58cc-4372-a567-0e02b2c3d479 `
-ReassignedFrom null `
-ReassignedTo null `
-Reassigner null `
-ReassignmentDate 2023-10-01T12:34:56.789Z `
-ReassignmentType ESCALATION
  • Convert the resource to JSON
$Approvalreassignmenthistory | ConvertTo-JSON

[Back to top]