Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/AccessRequest.md
2025-05-13 16:13:23 +00:00

2.1 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-access-request AccessRequest AccessRequest AccessRequest powershellsdk
powershell
PowerShell
sdk
AccessRequest
V2025AccessRequest
/tools/sdk/powershell/v2025/models/access-request
SDK
Software Development Kit
AccessRequest
V2025AccessRequest

AccessRequest

Properties

Name Type Description Notes
RequestedFor []String A list of Identity IDs for whom the Access is requested. If it's a Revoke request, there can only be one Identity ID. [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]
RequestedForWithRequestedItems []RequestedForDtoRef Additional submit data structure with requestedFor containing requestedItems allowing distinction for each request item and Identity. * Can only be used when 'requestedFor' and 'requestedItems' are not separately provided * Adds ability to specify which account the user wants the access on, in case they have multiple accounts on a source * Allows the ability to request items with different remove dates * Also allows different combinations of request items and identities in the same request * Only for use in GRANT_ACCESS type requests [optional]

Examples

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

[Back to top]