Functions/BloxOneDDI/Get-B1APIKey.ps1

function Get-B1APIKey {
    <#
    .SYNOPSIS
        Retrieves a list of BloxOne Cloud API Keys

    .DESCRIPTION
        This function is used to retrieve a list of API Keys from the BloxOne Cloud
        The actual API Key is only available during initial creation and cannot be retrieved afterwards via this API, except for Legacy Keys which are being deprecated.

    .PARAMETER User
        Filter the results by user_email

    .PARAMETER Name
        Filter the results by the name of the API Key

    .PARAMETER Type
        Filter the results by the API Key Type

    .PARAMETER State
        Filter the results by the state of the API Key

    .PARAMETER Limit
        Use this parameter to limit the quantity of results. The default and maximum number of results is 101.

    .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 id
        The id of the API Key to filter by

    .EXAMPLE
        Get-B1APIKey -User "user@domain.corp" -Name "somename" -Type "interactive" -State Enabled

    .FUNCTIONALITY
        BloxOneDDI

    .FUNCTIONALITY
        Authentication
    #>

    param(
        [String]$User,
        [string]$CreatedBy,
        [String]$Name,
        [ValidateSet("Interactive", "Legacy", "Service")]
        [String]$Type,
        [ValidateSet("Enabled", "Disabled")]
        [String]$State,
        [Int]$Limit = 101,
        [Int]$Offset = 0,
        [Switch]$Strict,
        [String]$id
    )

    $MatchType = Match-Type $Strict

    $QueryFilters = @()
    if ($Limit) {
        $QueryFilters += "_limit=$Limit"
    }
    if ($Offset) {
        $QueryFilters += "_offset=$Offset"
    }

    $ParamFilters = @()
    if ($User) {
      $ParamFilters += "user_email$MatchType`"$User`""
    }
    if ($CreatedBy) {
        $ParamFilters += "created_by$MatchType`"$CreatedBy`""
      }
    if ($Name) {
        $ParamFilters += "name$MatchType`"$Name`""
    }
    if ($Type) {
        $ParamFilters += "type:=`"$Type`""
    }
    if ($State) {
        $ParamFilters += "state:=`"$State`""
    }
    if ($id) {
        $ParamFilters += "id==`"$id`""
    }

     if ($ParamFilters) {
        $ParamFilter = Combine-Filters($ParamFilters)
        $QueryFilters += "_filter=$ParamFilter"
    }

    $CombinedFilter += ConvertTo-QueryString($QueryFilters)

    $Results = Query-CSP -Method GET -Uri "$(Get-B1CSPUrl)/v2/api_keys$CombinedFilter" | Select-Object -ExpandProperty results -ErrorAction SilentlyContinue -WarningAction SilentlyContinue

    if ($Results) {
        return $Results
    }

}