Public/Get-UnifiSiteRadiusAccount.ps1

function Get-UnifiSiteRadiusAccount {
    [CmdletBinding()]
    param (
        [Parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $true)][string]$name
    ) 
    $URI = "$controller/api/s/$name/rest/account"
    (Invoke-GetRestAPICall $URI).data
    <#
        .SYNOPSIS
        List accounts for RADIUS.
 
        .DESCRIPTION
        List accounts for RADIUS.
 
        .PARAMETER Name
        Short name for the site. This is the 'name' value from the Get-UnifiSite command.
 
        .INPUTS
        System.String. Can take value from pipeline.
 
        .OUTPUTS
        System.Object.
    #>

}