Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,9 @@ Sort results using the standard syntax described in [V3 API Standard Collection
.PARAMETER RequestState
Filter the results by the state of the request. The only valid value is *EXECUTING*.

.PARAMETER XSailPointExperimental
Use this header to enable this experimental API.

.PARAMETER WithHttpInfo

A switch when turned on will return a hash table of Response, StatusCode and Headers instead of just the Response
Expand Down Expand Up @@ -858,6 +861,9 @@ function Get-V2025AdministratorsAccessRequestStatus {
[Parameter(Position = 9, ValueFromPipelineByPropertyName = $true, Mandatory = $false)]
[String]
${RequestState},
[Parameter(Position = 10, ValueFromPipelineByPropertyName = $true, Mandatory = $false)]
[String]
$XSailPointExperimental = "true",
[Switch]
$WithHttpInfo
)
Expand Down Expand Up @@ -920,7 +926,10 @@ function Get-V2025AdministratorsAccessRequestStatus {
$LocalVarQueryParameters['request-state'] = $RequestState
}


if (!$XSailPointExperimental) {
throw "Error! The required parameter `XSailPointExperimental` missing when calling getEntitlementDetailsForIdentity."
}
$LocalVarHeaderParameters['X-SailPoint-Experimental'] = $XSailPointExperimental

$LocalVarResult = Invoke-V2025ApiClient -Method 'GET' `
-Uri $LocalVarUri `
Expand Down