Public/Oidc/Get-R1OidcDiscoveryEndpoint.ps1

# .ExternalHelp psRadiantOne-help.xml
function Get-R1OidcDiscoveryEndpoint {
    [CmdletBinding()]
    [OutputType('System.Object')]
    param( )

    Begin {

        Assert-R1Session -RequireToken

    }#begin

    Process {

        $URI = Resolve-R1ServiceUrl -Service Settings -Path 'oidc_providers/discovery_endpoints'

        Invoke-R1RestMethod -Uri $URI -Method GET

    }#process

    End { }#end

}