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

1.7 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
v2024-access-request-dynamic-approver AccessRequestDynamicApprover AccessRequestDynamicApprover AccessRequestDynamicApprover powershellsdk
powershell
PowerShell
sdk
AccessRequestDynamicApprover
V2024AccessRequestDynamicApprover
/tools/sdk/powershell/v2024/models/access-request-dynamic-approver
SDK
Software Development Kit
AccessRequestDynamicApprover
V2024AccessRequestDynamicApprover

AccessRequestDynamicApprover

Properties

Name Type Description Notes
AccessRequestId String The unique ID of the access request object. Can be used with the access request status endpoint to get the status of the request. [required]
RequestedFor []AccessItemRequestedForDto Identities access was requested for. [required]
RequestedItems []AccessRequestDynamicApproverRequestedItemsInner The access items that are being requested. [required]
RequestedBy AccessItemRequesterDto [required]

Examples

  • Prepare the resource
$AccessRequestDynamicApprover = Initialize-V2024AccessRequestDynamicApprover  -AccessRequestId 4b4d982dddff4267ab12f0f1e72b5a6d `
 -RequestedFor null `
 -RequestedItems null `
 -RequestedBy null
  • Convert the resource to JSON
$AccessRequestDynamicApprover | ConvertTo-JSON

[Back to top]