Skip to content

Commit ae9b700

Browse files
author
InIn Devops
committed
6.0.0
1 parent d693d45 commit ae9b700

55 files changed

Lines changed: 5033 additions & 329 deletions

Some content is hidden

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ npm install purecloud-platform-client-v2
2525
Reference from the CDN:
2626

2727
~~~ html
28-
<!-- Replace `5.1.0` with the version you want to use. -->
29-
<script src="https://sdk-cdn.mypurecloud.com/javascript/5.1.0/purecloud-platform-client-v2.min.js"></script>
28+
<!-- Replace `6.0.0` with the version you want to use. -->
29+
<script src="https://sdk-cdn.mypurecloud.com/javascript/6.0.0/purecloud-platform-client-v2.min.js"></script>
3030
~~~
3131

3232
View the documentation on the [PureCloud Developer Center](https://developer.mypurecloud.com/api/rest/client-libraries/javascript/).

build/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ npm install purecloud-platform-client-v2
2525
Reference from the CDN:
2626

2727
~~~ html
28-
<!-- Replace `5.1.0` with the version you want to use. -->
29-
<script src="https://sdk-cdn.mypurecloud.com/javascript/5.1.0/purecloud-platform-client-v2.min.js"></script>
28+
<!-- Replace `6.0.0` with the version you want to use. -->
29+
<script src="https://sdk-cdn.mypurecloud.com/javascript/6.0.0/purecloud-platform-client-v2.min.js"></script>
3030
~~~
3131

3232
View the documentation on the [PureCloud Developer Center](https://developer.mypurecloud.com/api/rest/client-libraries/javascript/).

build/docs/ArchitectApi.md

Lines changed: 760 additions & 34 deletions
Large diffs are not rendered by default.

build/docs/AuthorizationApi.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ var opts = {
323323
'expand': null, // [Object] | variable name requested by expand list
324324
'nextPage': "nextPage_example", // String | next page token
325325
'previousPage': "previousPage_example", // String | Previous page token
326+
'name': "name_example", // String |
326327
'permission': null, // [Object] |
327328
'defaultRoleId': null, // [Object] |
328329
'userCount': true // Boolean |
@@ -349,6 +350,7 @@ apiInstance.getAuthorizationRoles(opts)
349350
**expand** | [**[Object]**](Object.html)| variable name requested by expand list | [optional] |
350351
**nextPage** | **String**| next page token | [optional] |
351352
**previousPage** | **String**| Previous page token | [optional] |
353+
**name** | **String**| | [optional] |
352354
**permission** | [**[Object]**](Object.html)| | [optional] |
353355
**defaultRoleId** | [**[Object]**](Object.html)| | [optional] |
354356
**userCount** | **Boolean**| | [optional] [default to true] |

build/docs/ConversationsApi.md

Lines changed: 57 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ All URIs are relative to *https://api.mypurecloud.com*
8383
[**postConversationsEmailParticipantReplace**](ConversationsApi.html#postConversationsEmailParticipantReplace) | **POST** /api/v2/conversations/emails/{conversationId}/participants/{participantId}/replace | Replace this participant with the specified user and/or address
8484
[**postConversationsEmails**](ConversationsApi.html#postConversationsEmails) | **POST** /api/v2/conversations/emails | Create an email conversation
8585
[**postConversationsFaxes**](ConversationsApi.html#postConversationsFaxes) | **POST** /api/v2/conversations/faxes | Create Fax Conversation
86+
[**putConversationsCallParticipantCommunicationUuidata**](ConversationsApi.html#putConversationsCallParticipantCommunicationUuidata) | **PUT** /api/v2/conversations/calls/{conversationId}/participants/{participantId}/communications/{communicationId}/uuidata | Set uuiData to be sent on future commands.
8687
[**putConversationsEmailMessagesDraft**](ConversationsApi.html#putConversationsEmailMessagesDraft) | **PUT** /api/v2/conversations/emails/{conversationId}/messages/draft | Update conversation draft reply
8788
{: class="table table-striped"}
8889

@@ -2954,7 +2955,7 @@ var conversationId = "conversationId_example"; // String | conversation ID
29542955
var participantId = "participantId_example"; // String | participant ID
29552956

29562957
var opts = {
2957-
'body': new platformClient.CreateCallbackCommand() // CreateCallbackCommand |
2958+
'body': new platformClient.CreateCallbackOnConversationCommand() // CreateCallbackOnConversationCommand |
29582959
};
29592960
apiInstance.postConversationParticipantCallbacks(conversationId, participantId, opts)
29602961
.then(function() {
@@ -2974,7 +2975,7 @@ apiInstance.postConversationParticipantCallbacks(conversationId, participantId,
29742975
| ------------- | ------------- | ------------- | ------------- |
29752976
**conversationId** | **String**| conversation ID | |
29762977
**participantId** | **String**| participant ID | |
2977-
**body** | [**CreateCallbackCommand**](CreateCallbackCommand.html)| | [optional] |
2978+
**body** | [**CreateCallbackOnConversationCommand**](CreateCallbackOnConversationCommand.html)| | [optional] |
29782979
{: class="table table-striped"}
29792980

29802981
### Return type
@@ -3756,6 +3757,60 @@ apiInstance.postConversationsFaxes(body)
37563757

37573758
[**FaxSendResponse**](FaxSendResponse.html)
37583759

3760+
<a name="putConversationsCallParticipantCommunicationUuidata"></a>
3761+
3762+
# [**Empty**](Empty.html) putConversationsCallParticipantCommunicationUuidata(conversationId, participantId, communicationId, body)
3763+
3764+
PUT /api/v2/conversations/calls/{conversationId}/participants/{participantId}/communications/{communicationId}/uuidata
3765+
3766+
Set uuiData to be sent on future commands.
3767+
3768+
3769+
3770+
### Example
3771+
3772+
~~~ javascript
3773+
const platformClient = require('purecloud-platform-client-v2');
3774+
3775+
// Configure OAuth2 access token for authorization: PureCloud Auth
3776+
platformClient.ApiClient.instance.authentications['PureCloud Auth'].accessToken = 'YOUR ACCESS TOKEN';
3777+
3778+
var apiInstance = new platformClient.ConversationsApi();
3779+
3780+
var conversationId = "conversationId_example"; // String | conversationId
3781+
3782+
var participantId = "participantId_example"; // String | participantId
3783+
3784+
var communicationId = "communicationId_example"; // String | communicationId
3785+
3786+
var body = new platformClient.SetUuiDataRequest(); // SetUuiDataRequest | UUIData Request
3787+
3788+
apiInstance.putConversationsCallParticipantCommunicationUuidata(conversationId, participantId, communicationId, body)
3789+
.then(function(data) {
3790+
console.log(`putConversationsCallParticipantCommunicationUuidata success! data: ${JSON.stringify(data, null, 2)}`);
3791+
})
3792+
.catch(function(error) {
3793+
console.log('There was a failure calling putConversationsCallParticipantCommunicationUuidata');
3794+
console.error(error);
3795+
});
3796+
3797+
~~~
3798+
3799+
### Parameters
3800+
3801+
3802+
| Name | Type | Description | Notes |
3803+
| ------------- | ------------- | ------------- | ------------- |
3804+
**conversationId** | **String**| conversationId | |
3805+
**participantId** | **String**| participantId | |
3806+
**communicationId** | **String**| communicationId | |
3807+
**body** | [**SetUuiDataRequest**](SetUuiDataRequest.html)| UUIData Request | |
3808+
{: class="table table-striped"}
3809+
3810+
### Return type
3811+
3812+
[**Empty**](Empty.html)
3813+
37593814
<a name="putConversationsEmailMessagesDraft"></a>
37603815

37613816
# [**EmailMessage**](EmailMessage.html) putConversationsEmailMessagesDraft(conversationId, body)

build/docs/ExternalContactsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ var opts = {
603603
'pageNumber': 1, // Number | Page number
604604
'q': "q_example", // String | User supplied search keywords (no special syntax is currently supported)
605605
'sortOrder': "sortOrder_example", // String | Sort order
606-
'expand': ["expand_example"] // [String] | which fields, if any, to expand (externalOrganization)
606+
'expand': ["expand_example"] // [String] | which fields, if any, to expand
607607
};
608608
apiInstance.getExternalcontactsOrganizationContacts(externalOrganizationId, opts)
609609
.then(function(data) {
@@ -626,7 +626,7 @@ apiInstance.getExternalcontactsOrganizationContacts(externalOrganizationId, opts
626626
**pageNumber** | **Number**| Page number | [optional] [default to 1] |
627627
**q** | **String**| User supplied search keywords (no special syntax is currently supported) | [optional] |
628628
**sortOrder** | **String**| Sort order | [optional] |
629-
**expand** | [**[String]**](String.html)| which fields, if any, to expand (externalOrganization) | [optional] <br />**Values**: externalOrganization |
629+
**expand** | [**[String]**](String.html)| which fields, if any, to expand | [optional] <br />**Values**: externalOrganization, externalDataSources |
630630
{: class="table table-striped"}
631631

632632
### Return type

0 commit comments

Comments
 (0)