You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Parameter `listDataExportTasksParameters` is of type [ListDataExportTasksParameters](./src/main/java/com/ringcentral/definitions/ListDataExportTasksParameters.java)
4598
+
-`result` is of type [DataExportTaskList](./src/main/java/com/ringcentral/definitions/DataExportTaskList.java)
4599
+
- Parameter `apiVersion` is optional with default value `v1.0`
4600
+
4601
+
[Try it out](https://developer.ringcentral.com/api-reference#Glip-Compliance-Exports-listDataExportTasks) in API Explorer.
4602
+
4603
+
4566
4604
## Get Data Export Task
4567
4605
4568
4606
HTTP GET `/restapi/v1.0/glip/data-export/{taskId}`
@@ -4581,6 +4619,24 @@ rc.revoke();
4581
4619
[Try it out](https://developer.ringcentral.com/api-reference#Glip-Compliance-Exports-readDataExportTask) in API Explorer.
4582
4620
4583
4621
4622
+
## Get Data Export Task Dataset
4623
+
4624
+
HTTP GET `/restapi/v1.0/glip/data-export/{taskId}/datasets/{datasetId}`
Copy file name to clipboardExpand all lines: src/main/java/com/ringcentral/definitions/CompanyPhoneNumberInfo.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,10 @@ public class CompanyPhoneNumberInfo {
57
57
* CCRN (Contact Center Routing Number) provider. If not specified then the default value 'InContact/North America' is used, its ID is '1'
58
58
*/
59
59
publicContactCenterProvidercontactCenterProvider;
60
+
/**
61
+
* Vanity pattern for this number. Returned only when vanity search option is requested. Vanity pattern corresponds to request parameters nxx plus line or numberPattern
62
+
*/
63
+
publicStringvanityPattern;
60
64
61
65
publicCompanyPhoneNumberInfouri(Stringuri) {
62
66
this.uri = uri;
@@ -123,4 +127,9 @@ public CompanyPhoneNumberInfo contactCenterProvider(ContactCenterProvider contac
Copy file name to clipboardExpand all lines: src/main/java/com/ringcentral/definitions/CreateDataExportTaskRequest.java
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -3,34 +3,34 @@
3
3
4
4
publicclassCreateDataExportTaskRequest {
5
5
/**
6
-
* Starting time for data collection. The default value is current time minus 24 hours. If `dateTo` is not specified then its value is set to `dateFrom` plus 24 hours. The specified time range should not be greater than 7 days
6
+
* Starting time for data collection. The default value is `timeTo` minus 24 hours. Max allowed time frame between `timeFrom` and `timeTo` is 6 months
7
7
*/
8
-
publicStringdateFrom;
8
+
publicStringtimeFrom;
9
9
/**
10
-
* Ending time for data collection. The default value is current time. If `dateFrom` is not specified then its value is set to `dateTo` minus 24 hours. The specified time range should not be greater than 7 days
10
+
* Ending time for data collection. The default value is current time. Max allowed time frame between `timeFrom` and `timeTo` is 6 months
11
11
*/
12
-
publicStringdateTo;
12
+
publicStringtimeTo;
13
13
/**
14
-
* List of users which data is collected. The following data will be exported: posts, tasks, events, etc. posted by the user(s); posts addressing the user(s) via direct and @Mentions; tasks assigned to the listed user(s). The list of 30 users per request is supported.
14
+
*
15
15
*/
16
-
publicString[] userIds;
16
+
publicDataExportTaskContactInfo[] contacts;
17
17
/**
18
-
* List of chats from which the data (posts, files, tasks, events, notes, etc.) will be collected
18
+
* List of chats from which the data (posts, files, tasks, events, notes, etc.) will be collected. Maximum number of chats supported is 10
0 commit comments