Functions/BloxOne/BloxOneCloud/Get-B1User.ps1

function Get-B1User {
    <#
    .SYNOPSIS
        Retrieves a list of users from the BloxOne Cloud

    .DESCRIPTION
        This function is used to retrieve a list of users from the BloxOne Cloud

    .PARAMETER Name
        Filter the results by the name of the user

    .PARAMETER Email
        Filter the results by the email associated with the user

    .PARAMETER State
        Filter the results by the state of the user

    .PARAMETER Type
        Filter the results by the user type

    .PARAMETER Limit
        Use this parameter to limit the quantity of results returned. The default number of results is 100.

    .PARAMETER Offset
        Use this parameter to offset the results by the value entered for the purpose of pagination

    .PARAMETER Strict
        Use strict filter matching. By default, filters are searched using wildcards where possible. Using strict matching will only return results matching exactly what is entered in the applicable parameters.

    .PARAMETER Fields
        Specify a list of fields to return. The default is to return all fields.

    .PARAMETER OrderBy
        Optionally return the list ordered by a particular value. If sorting is allowed on non-flat hierarchical resources, the service should implement a qualified naming scheme such as dot-qualification to reference data down the hierarchy. Using 'asc' or 'desc' as a suffix will change the ordering, with ascending as default.

    .PARAMETER CustomFilters
        Accepts either an Object, ArrayList or String containing one or more custom filters.
        See here for usage: https://ibps.readthedocs.io/en/latest/#-customfilters

    .PARAMETER CaseSensitive
        Use Case Sensitive matching. By default, case-insensitive matching both for -Strict matching and regex matching.

    .PARAMETER id
        The id of the authoritative zone to filter by

    .EXAMPLE
        PS> Get-B1User -Name "MyName"

    .EXAMPLE
        PS> Get-B1User -Email "MyName@domain.corp"

    .EXAMPLE
        PS> Get-B1User -State Inactive

    .FUNCTIONALITY
        BloxOneDDI

    .FUNCTIONALITY
        Authentication
    #>

    [CmdletBinding()]
    param(
        [String]$Name,
        [String]$Email,
        [ValidateSet("Active", "Deactivated")]
        [String]$State,
        [ValidateSet("Local", "IdP","Service")]
        [String]$Type,
        [Int]$Limit = 101,
        [Int]$Offset = 0,
        [Switch]$Strict,
        [String[]]$Fields,
        [String]$OrderBy,
        $CustomFilters,
        [Switch]$CaseSensitive,
        [String]$id
    )

    $MatchType = Match-Type $Strict $CaseSensitive
    [System.Collections.ArrayList]$Filters = @()
    [System.Collections.ArrayList]$QueryFilters = @()
    if ($CustomFilters) {
        $Filters.Add($CustomFilters) | Out-Null
    }
    if ($Name) {
        $Filters.Add("name$MatchType`"$Name`"") | Out-Null
    }
    if ($Email) {
        $Filters.Add("email$MatchType`"$Email`"") | Out-Null
    }
    if ($State) {
        $Filters.Add("state:=`"$State`"") | Out-Null
    }
    if ($Type) {
        $Filters.Add("type:=`"$Type`"") | Out-Null
    }
    if ($id) {
        $Filters.Add("id==`"$id`"") | Out-Null
    }
    if ($Filters) {
        $Filter = Combine-Filters $Filters -CaseSensitive:$CaseSensitive
        $QueryFilters.Add("_filter=$Filter") | Out-Null
    }
    if ($Fields) {
        $Fields += "id"
        $QueryFilters.Add("_fields=$($Fields -join ",")") | Out-Null
    }
    if ($Limit) {
        $QueryFilters.Add("_limit=$($Limit)") | Out-Null
    }
    if ($Offset) {
        $QueryFilters.Add("_offset=$($Offset)") | Out-Null
    }
    if ($OrderBy) {
        $QueryFilters.Add("_order_by=$($OrderBy)") | Out-Null
    }
    if ($QueryFilters) {
        $QueryString = ConvertTo-QueryString $QueryFilters
    }
    Write-DebugMsg -Filters $QueryFilters
    if ($QueryString) {
        $Results = Invoke-CSP -Method GET -Uri "$(Get-B1CSPUrl)/v2/users$($QueryString)" | Select-Object -ExpandProperty results -ErrorAction SilentlyContinue
    } else {
        $Results = Invoke-CSP -Method GET -Uri "$(Get-B1CSPUrl)/v2/users" | Select-Object -ExpandProperty results -ErrorAction SilentlyContinue
    }
    if ($Results) {
        return $Results
    }
}