Skip to main content

BulkApproveRequestDTO

Properties

NameTypeDescriptionNotes
ApprovalIds[]StringArray of Approval IDs to be bulk approved[optional]
CommentStringOptional comment to include with the bulk approval request[optional]
AdditionalAttributes[map[string]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0Additional attributes to include with the bulk approval request[optional]

Examples

  • Prepare the resource
$BulkApproveRequestDTO = Initialize-V2025BulkApproveRequestDTO  -ApprovalIds [38453251-6be2-5f8f-df93-5ce19e295837, 38453251-6be2-5f8f-df93-5ce19e295838] `
-Comment Bulk approved by admin for monthly review `
-AdditionalAttributes {source=automation, urgency=high}
  • Convert the resource to JSON
$BulkApproveRequestDTO | ConvertTo-JSON

[Back to top]