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