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