Public/Get-GCRoutingSettings.ps1
|
<# .SYNOPSIS Retrieves the routing settings for the organization in Genesys Cloud. .DESCRIPTION Queries the Genesys Cloud API to retrieve the organization's routing settings, including transcription and contact center settings. API Endpoint: GET /api/v2/routing/settings .EXAMPLE Get-GCRoutingSettings Retrieves the routing settings for the organization. .NOTES Genesys Cloud API: GET /api/v2/routing/settings #> function Get-GCRoutingSettings { [CmdletBinding()] param() $endpoint = "routing/settings" return Invoke-GCApiRequest -Endpoint $endpoint -Method GET } |