Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AccessRequestResponse.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
beta-access-request-response AccessRequestResponse AccessRequestResponse AccessRequestResponse powershellsdk
powershell
PowerShell
sdk
AccessRequestResponse
BetaAccessRequestResponse
/tools/sdk/powershell/beta/models/access-request-response
SDK
Software Development Kit
AccessRequestResponse
BetaAccessRequestResponse

AccessRequestResponse

Properties

Name Type Description Notes
NewRequests []AccessRequestTracking A list of new access request tracking data mapped to the values requested. [optional]
ExistingRequests []AccessRequestTracking A list of existing access request tracking data mapped to the values requested. This indicates access has already been requested for this item. [optional]

Examples

  • Prepare the resource
$AccessRequestResponse = Initialize-BetaAccessRequestResponse  -NewRequests [{requestedFor=899fd612ecfc4cf3bf48f14d0afdef89, requestedItemsDetails=[{type=ENTITLEMENT, id=779c6fd7171540bba1184e5946112c28}], attributesHash=-1928438224, accessRequestIds=[5d3118c518a44ec7805450d53479ccdb]}] `
 -ExistingRequests [{requestedFor=899fd612ecfc4cf3bf48f14d0afdef89, requestedItemsDetails=[{type=ROLE, id=779c6fd7171540bbc1184e5946112c28}], attributesHash=2843118224, accessRequestIds=[5d3118c518a44ec7805450d53479ccdc]}]
  • Convert the resource to JSON
$AccessRequestResponse | ConvertTo-JSON

[Back to top]