Public/get-IDNOAuthClient.ps1

#
# get_IDNOAuthClient.ps1
#
function get-IDNOAuthClient ($orgName, $authHeader, $id){
    Invoke-RestMethod -Method Get -UseBasicParsing -Headers $authHeader -Uri "https://$orgName.api.identitynow.com/beta/oauth-clients/$id" -ContentType 'application/json' 
}