Get-PASRequestDetail
Get-PASRequestDetail
SYNOPSIS
Gets requests
SYNTAX
Get-PASRequestDetail [-RequestType] <String> [-RequestID] <String> [<CommonParameters>]
DESCRIPTION
Gets Requests
Officially supported from version 9.10.
Reports received that function works in 9.9 also.
EXAMPLES
EXAMPLE 1
Get-PASRequestDetail -RequestType IncomingRequests -RequestID $ID
Gets details of request with ID held in $ID
EXAMPLE 2
Get-PASRequestDetail -RequestType MyRequests -RequestID TargetSafe_12
Gets details of your own request with ID TargetSafe_12.
EXAMPLE 3
[PSCustomObject]@{RequestType = 'IncomingRequests'; RequestID = 'TargetSafe_15' } | Get-PASRequestDetail
Gets request details using pipeline input, since both RequestType and RequestID accept values by property name.
PARAMETERS
-RequestType
Specify whether outgoing or incoming requests will be searched for
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
-RequestID
The request’s uniqueID, composed of the Safe Name and internal RequestID.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
OUTPUTS
NOTES
Minimum CyberArk Version 9.10