Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ApprovalItemDetails.md
2025-04-01 09:23:12 -04:00

1.4 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
v2025-approval-item-details ApprovalItemDetails ApprovalItemDetails ApprovalItemDetails powershellsdk
powershell
PowerShell
sdk
ApprovalItemDetails
V2025ApprovalItemDetails
/tools/sdk/powershell/v2025/models/approval-item-details
SDK
Software Development Kit
ApprovalItemDetails
V2025ApprovalItemDetails

ApprovalItemDetails

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
$ApprovalItemDetails = Initialize-PSSailpoint.V2025ApprovalItemDetails  -Id 2c9180835d2e5168015d32f890ca1581 `
 -Account john.smith `
 -Application Active Directory `
 -Name emailAddress `
 -Operation update `
 -Value a@b.com `
 -State null
  • Convert the resource to JSON
$ApprovalItemDetails | ConvertTo-JSON

[Back to top]