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

1.5 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-accounts-selection-request AccountsSelectionRequest AccountsSelectionRequest AccountsSelectionRequest powershellsdk
powershell
PowerShell
sdk
AccountsSelectionRequest
V2024AccountsSelectionRequest
/tools/sdk/powershell/v2024/models/accounts-selection-request
SDK
Software Development Kit
AccountsSelectionRequest
V2024AccountsSelectionRequest

AccountsSelectionRequest

Properties

Name Type Description Notes
RequestedFor []String A list of Identity IDs for whom the Access is requested. [required]
RequestType AccessRequestType [optional]
RequestedItems []AccessRequestItem [required]
ClientMetadata map[string]String Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on associated APIs such as /account-activities. [optional]

Examples

  • Prepare the resource
$AccountsSelectionRequest = Initialize-V2024AccountsSelectionRequest  -RequestedFor 2c918084660f45d6016617daa9210584 `
 -RequestType null `
 -RequestedItems null `
 -ClientMetadata {requestedAppId=2c91808f7892918f0178b78da4a305a1, requestedAppName=test-app}
  • Convert the resource to JSON
$AccountsSelectionRequest | ConvertTo-JSON

[Back to top]