Public/Get-GCIdentityProviderOkta.ps1
|
<# .SYNOPSIS Retrieves the Okta identity provider configuration. .DESCRIPTION Returns the Okta identity provider configuration from Genesys Cloud. Uses the GET /api/v2/identityproviders/okta endpoint. .EXAMPLE Get-GCIdentityProviderOkta .NOTES Genesys Cloud API: GET /api/v2/identityproviders/okta #> function Get-GCIdentityProviderOkta { [CmdletBinding()] param() $endpoint = "identityproviders/okta" return Invoke-GCApiRequest -Endpoint $endpoint -Method GET } |