Public/Get-SCAOnDemandConfig.ps1

# .ExternalHelp IdentityCommand.SCA-help.xml
function Get-SCAOnDemandConfig {
    [CmdletBinding()]
    param()

    begin { }#begin

    process {

        $URI = "$($ISPSSSession.tenant_url)/api/on-demand/config"

        #Send Request
        $result = Invoke-IDRestMethod -Uri $URI -Method GET

        if ($null -ne $result) {

            $result

        }

    }#process

    end { }#end

}