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

1.6 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-close-access-request CloseAccessRequest CloseAccessRequest CloseAccessRequest powershellsdk
powershell
PowerShell
sdk
CloseAccessRequest
V2024CloseAccessRequest
/tools/sdk/powershell/v2024/models/close-access-request
SDK
Software Development Kit
CloseAccessRequest
V2024CloseAccessRequest

CloseAccessRequest

Properties

Name Type Description Notes
AccessRequestIds []String Access Request IDs for the requests to be closed. Accepts 1-500 Identity Request IDs per request. [required]
Message String Reason for closing the access request. Displayed under Warnings in IdentityNow. [optional] [default to "The IdentityNow Administrator manually closed this request."]
ExecutionStatus Enum [ "Terminated", "Completed" ] The request's provisioning status. Displayed as Stage in IdentityNow. [optional] [default to "Terminated"]
CompletionStatus Enum [ "Success", "Incomplete", "Failure" ] The request's overall status. Displayed as Status in IdentityNow. [optional] [default to "Failure"]

Examples

  • Prepare the resource
$CloseAccessRequest = Initialize-V2024CloseAccessRequest  -AccessRequestIds [2c90ad2a70ace7d50170acf22ca90010] `
 -Message The IdentityNow Administrator manually closed this request. `
 -ExecutionStatus Terminated `
 -CompletionStatus Failure
  • Convert the resource to JSON
$CloseAccessRequest | ConvertTo-JSON

[Back to top]