Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/ApprovalItems.md
2025-05-07 14:37:48 +00:00

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
approval-items ApprovalItems ApprovalItems ApprovalItems powershellsdk
powershell
PowerShell
sdk
ApprovalItems
ApprovalItems
/tools/sdk/powershell/v3/models/approval-items
SDK
Software Development Kit
ApprovalItems
ApprovalItems

ApprovalItems

Properties

Name Type Description Notes
Id String The approval item's ID [optional]
Account String The account referenced by the approval item [optional]
Application String The name of the application/source [optional]
Name String The attribute's name [optional]
Operation String The attribute's operation [optional]
Value String The attribute's value [optional]
State WorkItemState [optional]

Examples

  • Prepare the resource
$ApprovalItems = Initialize-ApprovalItems  -Id 2c9180835d2e5168015d32f890ca1581 `
 -Account john.smith `
 -Application Active Directory `
 -Name emailAddress `
 -Operation update `
 -Value a@b.com `
 -State null
  • Convert the resource to JSON
$ApprovalItems | ConvertTo-JSON

[Back to top]