PowerShell Question Type - No record found!

Posted 15 days ago by Bojan Zivkovic

Post a topic
Solved
B
Bojan Zivkovic

Hi, I am testing PowerShell Question Type and in doing so I ran into problem with No record found returned by View. PowerShell script used in the questions connects to JumpCloud DaaS instance and pulls the list of all users there - outside Au2mator script works fine but inside service request, the list of JumpCloud users is always empty.


$ApiKey = "xxxxyyyyzzzz"
Connect-JCOnline $ApiKey -force

$JCUsers = Get-JCUser | Sort-Object -Property UserName
$ReturnArray = @()

try {

    foreach ($JCUser in $JCUsers) {
        $Temp = New-Object -TypeName PSObject
        $Temp | Add-Member -MemberType NoteProperty -Name UserName -Value $JCUser.UserName
        $ReturnArray += $Temp
    }

    $ReturnValue = $ReturnArray

}

catch {
    $ReturnValue = $Error | ConvertTo-Json
}

Return $ReturnValue


When I pull AD users using PowerShell Question Type, everything works fine - but pulling JumpCloud users does not work.


Any help would be appreciated.

0 Votes


0 Comments

Login or Sign up to post a comment