Skip to main content

AccessRequest

Properties

NameTypeDescriptionNotes
RequestedFor[]StringA list of Identity IDs for whom the Access is requested. If it's a Revoke request, there can only be one Identity ID.[required]
RequestTypeAccessRequestType[optional]
RequestedItems[]AccessRequestItem[required]
ClientMetadatamap[string]StringArbitrary 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
$AccessRequest = Initialize-PSSailpoint.V2024AccessRequest  -RequestedFor null `
-RequestType null `
-RequestedItems null `
-ClientMetadata {requestedAppId=2c91808f7892918f0178b78da4a305a1, requestedAppName=test-app}
  • Convert the resource to JSON
$AccessRequest | ConvertTo-JSON

[Back to top]