Functions/Accounts/Revoke-PASJustInTimeAccess.ps1
# .ExternalHelp psPAS-help.xml function Revoke-PASJustInTimeAccess { [CmdletBinding()] param( [parameter( Mandatory = $true, ValueFromPipelinebyPropertyName = $true )] [ValidateNotNullOrEmpty()] [Alias('id')] [string]$AccountID ) BEGIN { #check minimum version Assert-VersionRequirement -RequiredVersion 12.0 }#begin PROCESS { #Create URL for request $URI = "$($psPASSession.BaseURI)/api/Accounts/$AccountID/RevokeAdministrativeAccess" #Send request to webservice Invoke-PASRestMethod -Uri $URI -Method POST }#process END { }#end } |