Skip to content

Commit

Permalink
141.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PureCloud Jenkins committed Sep 14, 2024
1 parent 87258a8 commit 422f0ff
Show file tree
Hide file tree
Showing 21 changed files with 1,307 additions and 636 deletions.
8 changes: 8 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,8 @@ docs/GetIntegrationsClientappsUnifiedcommunications-example.txt
docs/GetIntegrationsCredential-example.txt
docs/GetIntegrationsCredentials-example.txt
docs/GetIntegrationsCredentialsTypes-example.txt
docs/GetIntegrationsSpeechAudioconnector-example.txt
docs/GetIntegrationsSpeechAudioconnectorIntegrationId-example.txt
docs/GetIntegrationsSpeechDialogflowAgent-example.txt
docs/GetIntegrationsSpeechDialogflowAgents-example.txt
docs/GetIntegrationsSpeechDialogflowcxAgent-example.txt
Expand Down Expand Up @@ -3012,6 +3014,8 @@ platformclientv2/attributedetaileventtopiccommunication.go
platformclientv2/attributefilteritem.go
platformclientv2/atzmtimeslot.go
platformclientv2/atzmtimeslotwithtimezone.go
platformclientv2/audioconnectorintegration.go
platformclientv2/audioconnectorintegrationentitylisting.go
platformclientv2/audiostate.go
platformclientv2/audioupdatedevent.go
platformclientv2/auditapi.go
Expand Down Expand Up @@ -3614,6 +3618,7 @@ platformclientv2/conversationcontentlocation.go
platformclientv2/conversationcontentnotificationtemplate.go
platformclientv2/conversationcontentquickreply.go
platformclientv2/conversationcontentquickreplyv2.go
platformclientv2/conversationcontentreaction.go
platformclientv2/conversationcontentstory.go
platformclientv2/conversationcontenttext.go
platformclientv2/conversationdeletionprotectionquery.go
Expand All @@ -3640,6 +3645,9 @@ platformclientv2/conversationemaileventtopicurireference.go
platformclientv2/conversationemaileventtopicwrapup.go
platformclientv2/conversationencryptionconfiguration.go
platformclientv2/conversationencryptionconfigurationlisting.go
platformclientv2/conversationenrichment.go
platformclientv2/conversationenrichmentlanguage.go
platformclientv2/conversationenrichmentsentimentv2.go
platformclientv2/conversationentitylisting.go
platformclientv2/conversationeventcobrowse.go
platformclientv2/conversationeventpresence.go
Expand Down
33 changes: 33 additions & 0 deletions APIData.json
Original file line number Diff line number Diff line change
Expand Up @@ -18164,6 +18164,39 @@
"return": "Credentialtypelisting",
"example": "config := platformclientv2.GetDefaultConfiguration()\nconfig.BasePath = \"\" // expected format: https://api.mypurecloud.com\nconfig.AccessToken = \"your_access_token\" // or use AuthorizeClientCredentials(...), AuthorizeCodeGrant(...) or AuthorizePKCEGrant(...)\n\napiInstance := platformclientv2.NewIntegrationsApiWithConfig(config)\n\n// List all credential types\ndata, response, err := apiInstance.GetIntegrationsCredentialsTypes()\nif err != nil {\n\tfmt.Printf(\"Error calling GetIntegrationsCredentialsTypes: %v\\n\", err)\n} else {\n\tfmt.Printf(\"Response:\\n Success: %v\\n Status code: %v\\n Correlation ID: %v\\n Body: %v\\n\", response.IsSuccess, response.StatusCode, response.CorrelationID, data.String())\n}"
},
"getintegrationsspeechaudioconnector": {
"operationId": "getintegrationsspeechaudioconnector",
"functionName": "GetIntegrationsSpeechAudioconnector",
"signature": "GetIntegrationsSpeechAudioconnector(pageNumber, pageSize)",
"parameters": [
{
"name": "pageNumber",
"type": "int",
"required": "false"
},
{
"name": "pageSize",
"type": "int",
"required": "false"
}
],
"return": "Audioconnectorintegrationentitylisting",
"example": "config := platformclientv2.GetDefaultConfiguration()\nconfig.BasePath = \"\" // expected format: https://api.mypurecloud.com\nconfig.AccessToken = \"your_access_token\" // or use AuthorizeClientCredentials(...), AuthorizeCodeGrant(...) or AuthorizePKCEGrant(...)\n\napiInstance := platformclientv2.NewIntegrationsApiWithConfig(config)\n\nvar pageNumber int // Page number\nvar pageSize int // Page size\n// Get a list of Audio Connector integrations\ndata, response, err := apiInstance.GetIntegrationsSpeechAudioconnector(pageNumber, pageSize)\nif err != nil {\n\tfmt.Printf(\"Error calling GetIntegrationsSpeechAudioconnector: %v\\n\", err)\n} else {\n\tfmt.Printf(\"Response:\\n Success: %v\\n Status code: %v\\n Correlation ID: %v\\n Body: %v\\n\", response.IsSuccess, response.StatusCode, response.CorrelationID, data.String())\n}"
},
"getintegrationsspeechaudioconnectorintegrationid": {
"operationId": "getintegrationsspeechaudioconnectorintegrationid",
"functionName": "GetIntegrationsSpeechAudioconnectorIntegrationId",
"signature": "GetIntegrationsSpeechAudioconnectorIntegrationId(integrationId)",
"parameters": [
{
"name": "integrationId",
"type": "string",
"required": "true"
}
],
"return": "Audioconnectorintegration",
"example": "config := platformclientv2.GetDefaultConfiguration()\nconfig.BasePath = \"\" // expected format: https://api.mypurecloud.com\nconfig.AccessToken = \"your_access_token\" // or use AuthorizeClientCredentials(...), AuthorizeCodeGrant(...) or AuthorizePKCEGrant(...)\n\napiInstance := platformclientv2.NewIntegrationsApiWithConfig(config)\n\nvar integrationId string // The integration ID\n// Get an Audio Connector integration\ndata, response, err := apiInstance.GetIntegrationsSpeechAudioconnectorIntegrationId(integrationId)\nif err != nil {\n\tfmt.Printf(\"Error calling GetIntegrationsSpeechAudioconnectorIntegrationId: %v\\n\", err)\n} else {\n\tfmt.Printf(\"Response:\\n Success: %v\\n Status code: %v\\n Correlation ID: %v\\n Body: %v\\n\", response.IsSuccess, response.StatusCode, response.CorrelationID, data.String())\n}"
},
"getintegrationsspeechdialogflowagent": {
"operationId": "getintegrationsspeechdialogflowagent",
"functionName": "GetIntegrationsSpeechDialogflowAgent",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Go package to interface with the Genesys Cloud Platform API. View the documentation on the [pkg.go.dev](https://pkg.go.dev/github.com/MyPureCloud/platform-client-sdk-go). Browse the source code on [Github](https://github.com/MyPureCloud/platform-client-sdk-go).

Latest version: 141.0.0 [![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-go.svg)](https://github.com/MyPureCloud/platform-client-sdk-go)
Latest version: 141.1.0 [![GitHub release](https://img.shields.io/github/release/mypurecloud/platform-client-sdk-go.svg)](https://github.com/MyPureCloud/platform-client-sdk-go)
[![Release Notes Badge](https://developer-content.genesys.cloud/images/sdk-release-notes.png)](https://github.com/MyPureCloud/platform-client-sdk-go/blob/master/releaseNotes.md)

## Golang Version Dependency
Expand Down
Loading

0 comments on commit 422f0ff

Please sign in to comment.