mirror of
https://github.com/LukeHagar/sailpoint-cli.git
synced 2025-12-06 12:47:44 +00:00
14 lines
369 B
PowerShell
14 lines
369 B
PowerShell
|
|
$Parameters = @{
|
|
"Filters" = 'name co "Andrew"'
|
|
}
|
|
|
|
# Accounts List
|
|
try {
|
|
|
|
Invoke-Paginate -Function "Get-Accounts" -Increment 250 -Limit 1000 -InitialOffset 0 -Parameters $Parameters
|
|
|
|
} catch {
|
|
Write-Host ("Exception occurred when calling Invoke-Paginate: {0}" -f $_.ErrorDetails)
|
|
Write-Host ("Response headers: {0}" -f $_.Exception.Response.Headers)
|
|
} |