Skip to content

Commit 341fde5

Browse files
author
PureCloud Jenkins
committed
doc publish
1 parent c839d1f commit 341fde5

85 files changed

Lines changed: 762 additions & 409 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.lastupdated

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-09-22T16:13:21
1+
2025-09-30T15:46:30

docs/AIStudioApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,4 +1054,4 @@ apiInstance.putConversationsSummariesSetting(summarySettingId, body)
10541054
**SummarySetting**
10551055

10561056

1057-
_purecloud-platform-client-v2@231.0.0_
1057+
_purecloud-platform-client-v2@232.0.0_

docs/AgentAssistantsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,4 +846,4 @@ apiInstance.putAssistantQueue(assistantId, queueId, body)
846846
**AssistantQueue**
847847

848848

849-
_purecloud-platform-client-v2@231.0.0_
849+
_purecloud-platform-client-v2@232.0.0_

docs/AgentCopilotApi.md

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All URIs are relative to *https://api.mypurecloud.com*
77
| Method | HTTP request | Description |
88
| ------------- | ------------- | ------------- |
99
[**getAssistantCopilot**](AgentCopilotApi#getAssistantCopilot) | **GET** /api/v2/assistants/{assistantId}/copilot | Get copilot configuration of an assistant.
10+
[**getAssistantsCopilotFeaturesupport**](AgentCopilotApi#getAssistantsCopilotFeaturesupport) | **GET** /api/v2/assistants/copilot/featuresupport | Get information about the support of features for all the languages or only for a certain language.
1011
[**putAssistantCopilot**](AgentCopilotApi#putAssistantCopilot) | **PUT** /api/v2/assistants/{assistantId}/copilot | Update agent copilot configuration
1112

1213

@@ -61,6 +62,58 @@ apiInstance.getAssistantCopilot(assistantId)
6162
**Copilot**
6263

6364

65+
## getAssistantsCopilotFeaturesupport
66+
67+
> LanguageSupportResponse getAssistantsCopilotFeaturesupport(opts)
68+
69+
70+
GET /api/v2/assistants/copilot/featuresupport
71+
72+
Get information about the support of features for all the languages or only for a certain language.
73+
74+
Requires ALL permissions:
75+
76+
* assistants:copilot:view
77+
78+
### Example Usage
79+
80+
```{"language":"javascript"}
81+
// Browser
82+
const platformClient = require('platformClient');
83+
// Node
84+
const platformClient = require('purecloud-platform-client-v2');
85+
86+
// Manually set auth token or use loginImplicitGrant(...) or loginClientCredentialsGrant(...) or loginPKCEGrant(...)
87+
platformClient.ApiClient.instance.setAccessToken(yourAccessToken);
88+
89+
let apiInstance = new platformClient.AgentCopilotApi();
90+
91+
let opts = {
92+
'language': "language_example" // String | Which language are the features supported for
93+
};
94+
95+
apiInstance.getAssistantsCopilotFeaturesupport(opts)
96+
.then((data) => {
97+
console.log(`getAssistantsCopilotFeaturesupport success! data: ${JSON.stringify(data, null, 2)}`);
98+
})
99+
.catch((err) => {
100+
console.log('There was a failure calling getAssistantsCopilotFeaturesupport');
101+
console.error(err);
102+
});
103+
```
104+
105+
### Parameters
106+
107+
108+
| Name | Type | Description | Notes |
109+
| ------------- | ------------- | ------------- | ------------- |
110+
**language** | **String** | Which language are the features supported for | [optional] |
111+
112+
### Return type
113+
114+
**LanguageSupportResponse**
115+
116+
64117
## putAssistantCopilot
65118

66119
> Copilot putAssistantCopilot(assistantId, body)
@@ -113,4 +166,4 @@ apiInstance.putAssistantCopilot(assistantId, body)
113166
**Copilot**
114167

115168

116-
_purecloud-platform-client-v2@231.0.0_
169+
_purecloud-platform-client-v2@232.0.0_

docs/AgentUIApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,4 @@ apiInstance.putUsersAgentuiAgentsAutoanswerAgentIdSettings(agentId, body)
217217
**AutoAnswerSettings**
218218

219219

220-
_purecloud-platform-client-v2@231.0.0_
220+
_purecloud-platform-client-v2@232.0.0_

docs/AlertingApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,4 +787,4 @@ apiInstance.putAlertingRule(ruleId, body)
787787
**CommonRule**
788788

789789

790-
_purecloud-platform-client-v2@231.0.0_
790+
_purecloud-platform-client-v2@232.0.0_

docs/AnalyticsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6564,4 +6564,4 @@ apiInstance.putAnalyticsDataretentionSettings(body)
65646564
**AnalyticsDataRetentionResponse**
65656565

65666566

6567-
_purecloud-platform-client-v2@231.0.0_
6567+
_purecloud-platform-client-v2@232.0.0_

docs/ArchitectApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2135,7 +2135,7 @@ Get an IVR IdentityResolutionConfig.
21352135
Requires ALL permissions:
21362136

21372137
* routing:callRoute:view
2138-
* routing:identityResolution:view
2138+
* routing:identityResolutionIvr:view
21392139

21402140
### Example Usage
21412141

@@ -7650,7 +7650,7 @@ Update an IVR IdentityResolutionConfig.
76507650
Requires ALL permissions:
76517651

76527652
* routing:callRoute:edit
7653-
* routing:identityResolution:edit
7653+
* routing:identityResolutionIvr:edit
76547654

76557655
### Example Usage
76567656

@@ -8348,4 +8348,4 @@ apiInstance.putFlowsOutcome(flowOutcomeId, opts)
83488348
**Operation**
83498349

83508350

8351-
_purecloud-platform-client-v2@231.0.0_
8351+
_purecloud-platform-client-v2@232.0.0_

docs/AuditApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,4 +378,4 @@ apiInstance.postAuditsQueryRealtimeRelated(body, opts)
378378
**AuditRealtimeRelatedResultsResponse**
379379

380380

381-
_purecloud-platform-client-v2@231.0.0_
381+
_purecloud-platform-client-v2@232.0.0_

docs/AuthorizationApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ apiInstance.getAuthorizationDivisionspermittedPagedSubjectId(subjectId, permissi
834834

835835
## getAuthorizationPermissions
836836

837-
> DomainPermissionEntityListing getAuthorizationPermissions(opts)
837+
> PermissionCollectionEntityListing getAuthorizationPermissions(opts)
838838
839839

840840
GET /api/v2/authorization/permissions
@@ -887,7 +887,7 @@ apiInstance.getAuthorizationPermissions(opts)
887887

888888
### Return type
889889

890-
**DomainPermissionEntityListing**
890+
**PermissionCollectionEntityListing**
891891

892892

893893
## getAuthorizationPolicies
@@ -3257,4 +3257,4 @@ apiInstance.putUserRoles(subjectId, body)
32573257
**UserAuthorization**
32583258

32593259

3260-
_purecloud-platform-client-v2@231.0.0_
3260+
_purecloud-platform-client-v2@232.0.0_

0 commit comments

Comments
 (0)