@rc-ex/core 1.0.1-alpha.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +2 -0
- package/lib/index.js +4 -0
- package/lib/index.js.map +1 -1
- package/package.json +5 -5
- package/src/index.ts +5 -0
- package/src/samples.md +539 -539
package/src/samples.md
CHANGED
|
@@ -18,7 +18,7 @@ var result = await rc.restapi().list();
|
|
|
18
18
|
await rc.revoke();
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
- `result` is of type [ApiVersionsList](./
|
|
21
|
+
- `result` is of type [ApiVersionsList](./definitions/ApiVersionsList.ts)
|
|
22
22
|
|
|
23
23
|
[Try it out](https://developer.ringcentral.com/api-reference#API-Info-readAPIVersions) in API Explorer.
|
|
24
24
|
|
|
@@ -41,7 +41,7 @@ await rc.revoke();
|
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
44
|
-
- `result` is of type [ApiVersionInfo](./
|
|
44
|
+
- `result` is of type [ApiVersionInfo](./definitions/ApiVersionInfo.ts)
|
|
45
45
|
|
|
46
46
|
[Try it out](https://developer.ringcentral.com/api-reference#API-Info-readAPIVersion) in API Explorer.
|
|
47
47
|
|
|
@@ -85,7 +85,7 @@ var result = await rc.restapi().oauth().authorize().post(AuthorizeRequest);
|
|
|
85
85
|
await rc.revoke();
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
- `AuthorizeRequest` is of type [AuthorizeRequest](./
|
|
88
|
+
- `AuthorizeRequest` is of type [AuthorizeRequest](./definitions/AuthorizeRequest.ts)
|
|
89
89
|
- `result` is an empty string
|
|
90
90
|
|
|
91
91
|
[Try it out](https://developer.ringcentral.com/api-reference#OAuth/OIDC-authorize2) in API Explorer.
|
|
@@ -108,8 +108,8 @@ var result = await rc.restapi().oauth().token().post(GetTokenRequest);
|
|
|
108
108
|
await rc.revoke();
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
-
- `GetTokenRequest` is of type [GetTokenRequest](./
|
|
112
|
-
- `result` is of type [TokenInfo](./
|
|
111
|
+
- `GetTokenRequest` is of type [GetTokenRequest](./definitions/GetTokenRequest.ts)
|
|
112
|
+
- `result` is of type [TokenInfo](./definitions/TokenInfo.ts)
|
|
113
113
|
|
|
114
114
|
[Try it out](https://developer.ringcentral.com/api-reference#OAuth/OIDC-getToken) in API Explorer.
|
|
115
115
|
|
|
@@ -133,7 +133,7 @@ await rc.revoke();
|
|
|
133
133
|
|
|
134
134
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
135
135
|
- Parameter `accountId` is optional with default value `~`
|
|
136
|
-
- `result` is of type [GetAccountInfoResponse](./
|
|
136
|
+
- `result` is of type [GetAccountInfoResponse](./definitions/GetAccountInfoResponse.ts)
|
|
137
137
|
|
|
138
138
|
[Try it out](https://developer.ringcentral.com/api-reference#Company-readAccountInfo) in API Explorer.
|
|
139
139
|
|
|
@@ -157,8 +157,8 @@ await rc.revoke();
|
|
|
157
157
|
|
|
158
158
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
159
159
|
- Parameter `accountId` is optional with default value `~`
|
|
160
|
-
- `readCompanyCallLogParameters` is of type [ReadCompanyCallLogParameters](./
|
|
161
|
-
- `result` is of type [AccountCallLogResponse](./
|
|
160
|
+
- `readCompanyCallLogParameters` is of type [ReadCompanyCallLogParameters](./definitions/ReadCompanyCallLogParameters.ts)
|
|
161
|
+
- `result` is of type [AccountCallLogResponse](./definitions/AccountCallLogResponse.ts)
|
|
162
162
|
|
|
163
163
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-readCompanyCallLog) in API Explorer.
|
|
164
164
|
|
|
@@ -182,7 +182,7 @@ await rc.revoke();
|
|
|
182
182
|
|
|
183
183
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
184
184
|
- Parameter `accountId` is optional with default value `~`
|
|
185
|
-
- `result` is of type [CompanyCallLogRecord](./
|
|
185
|
+
- `result` is of type [CompanyCallLogRecord](./definitions/CompanyCallLogRecord.ts)
|
|
186
186
|
|
|
187
187
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-readCompanyCallRecord) in API Explorer.
|
|
188
188
|
|
|
@@ -206,8 +206,8 @@ await rc.revoke();
|
|
|
206
206
|
|
|
207
207
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
208
208
|
- Parameter `accountId` is optional with default value `~`
|
|
209
|
-
- `listExtensionsParameters` is of type [ListExtensionsParameters](./
|
|
210
|
-
- `result` is of type [GetExtensionListResponse](./
|
|
209
|
+
- `listExtensionsParameters` is of type [ListExtensionsParameters](./definitions/ListExtensionsParameters.ts)
|
|
210
|
+
- `result` is of type [GetExtensionListResponse](./definitions/GetExtensionListResponse.ts)
|
|
211
211
|
|
|
212
212
|
[Try it out](https://developer.ringcentral.com/api-reference#Extensions-listExtensions) in API Explorer.
|
|
213
213
|
|
|
@@ -231,8 +231,8 @@ await rc.revoke();
|
|
|
231
231
|
|
|
232
232
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
233
233
|
- Parameter `accountId` is optional with default value `~`
|
|
234
|
-
- `extensionCreationRequest` is of type [ExtensionCreationRequest](./
|
|
235
|
-
- `result` is of type [ExtensionCreationResponse](./
|
|
234
|
+
- `extensionCreationRequest` is of type [ExtensionCreationRequest](./definitions/ExtensionCreationRequest.ts)
|
|
235
|
+
- `result` is of type [ExtensionCreationResponse](./definitions/ExtensionCreationResponse.ts)
|
|
236
236
|
|
|
237
237
|
[Try it out](https://developer.ringcentral.com/api-reference#Extensions-createExtension) in API Explorer.
|
|
238
238
|
|
|
@@ -257,7 +257,7 @@ await rc.revoke();
|
|
|
257
257
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
258
258
|
- Parameter `accountId` is optional with default value `~`
|
|
259
259
|
- Parameter `extensionId` is optional with default value `~`
|
|
260
|
-
- `result` is of type [GetExtensionInfoResponse](./
|
|
260
|
+
- `result` is of type [GetExtensionInfoResponse](./definitions/GetExtensionInfoResponse.ts)
|
|
261
261
|
|
|
262
262
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-readExtension) in API Explorer.
|
|
263
263
|
|
|
@@ -282,8 +282,8 @@ await rc.revoke();
|
|
|
282
282
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
283
283
|
- Parameter `accountId` is optional with default value `~`
|
|
284
284
|
- Parameter `extensionId` is optional with default value `~`
|
|
285
|
-
- `extensionUpdateRequest` is of type [ExtensionUpdateRequest](./
|
|
286
|
-
- `result` is of type [GetExtensionInfoResponse](./
|
|
285
|
+
- `extensionUpdateRequest` is of type [ExtensionUpdateRequest](./definitions/ExtensionUpdateRequest.ts)
|
|
286
|
+
- `result` is of type [GetExtensionInfoResponse](./definitions/GetExtensionInfoResponse.ts)
|
|
287
287
|
|
|
288
288
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-updateExtension) in API Explorer.
|
|
289
289
|
|
|
@@ -308,7 +308,7 @@ await rc.revoke();
|
|
|
308
308
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
309
309
|
- Parameter `accountId` is optional with default value `~`
|
|
310
310
|
- Parameter `extensionId` is optional with default value `~`
|
|
311
|
-
- `deleteExtensionParameters` is of type [DeleteExtensionParameters](./
|
|
311
|
+
- `deleteExtensionParameters` is of type [DeleteExtensionParameters](./definitions/DeleteExtensionParameters.ts)
|
|
312
312
|
- `result` is an empty string
|
|
313
313
|
|
|
314
314
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-deleteExtension) in API Explorer.
|
|
@@ -333,8 +333,8 @@ await rc.revoke();
|
|
|
333
333
|
|
|
334
334
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
335
335
|
- Parameter `accountId` is optional with default value `~`
|
|
336
|
-
- `createCompanyGreetingRequest` is of type [CreateCompanyGreetingRequest](./
|
|
337
|
-
- `result` is of type [CustomCompanyGreetingInfo](./
|
|
336
|
+
- `createCompanyGreetingRequest` is of type [CreateCompanyGreetingRequest](./definitions/CreateCompanyGreetingRequest.ts)
|
|
337
|
+
- `result` is of type [CustomCompanyGreetingInfo](./definitions/CustomCompanyGreetingInfo.ts)
|
|
338
338
|
|
|
339
339
|
[Try it out](https://developer.ringcentral.com/api-reference#Greetings-createCompanyGreeting) in API Explorer.
|
|
340
340
|
|
|
@@ -358,7 +358,7 @@ await rc.revoke();
|
|
|
358
358
|
|
|
359
359
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
360
360
|
- Parameter `accountId` is optional with default value `~`
|
|
361
|
-
- `result` is of type [IVRMenuList](./
|
|
361
|
+
- `result` is of type [IVRMenuList](./definitions/IVRMenuList.ts)
|
|
362
362
|
|
|
363
363
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-readIVRMenuList) in API Explorer.
|
|
364
364
|
|
|
@@ -382,8 +382,8 @@ await rc.revoke();
|
|
|
382
382
|
|
|
383
383
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
384
384
|
- Parameter `accountId` is optional with default value `~`
|
|
385
|
-
- `iVRMenuInfo` is of type [IVRMenuInfo](./
|
|
386
|
-
- `result` is of type [IVRMenuInfo](./
|
|
385
|
+
- `iVRMenuInfo` is of type [IVRMenuInfo](./definitions/IVRMenuInfo.ts)
|
|
386
|
+
- `result` is of type [IVRMenuInfo](./definitions/IVRMenuInfo.ts)
|
|
387
387
|
|
|
388
388
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-createIVRMenu) in API Explorer.
|
|
389
389
|
|
|
@@ -407,7 +407,7 @@ await rc.revoke();
|
|
|
407
407
|
|
|
408
408
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
409
409
|
- Parameter `accountId` is optional with default value `~`
|
|
410
|
-
- `result` is of type [IVRMenuInfo](./
|
|
410
|
+
- `result` is of type [IVRMenuInfo](./definitions/IVRMenuInfo.ts)
|
|
411
411
|
|
|
412
412
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-readIVRMenu) in API Explorer.
|
|
413
413
|
|
|
@@ -431,8 +431,8 @@ await rc.revoke();
|
|
|
431
431
|
|
|
432
432
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
433
433
|
- Parameter `accountId` is optional with default value `~`
|
|
434
|
-
- `iVRMenuInfo` is of type [IVRMenuInfo](./
|
|
435
|
-
- `result` is of type [IVRMenuInfo](./
|
|
434
|
+
- `iVRMenuInfo` is of type [IVRMenuInfo](./definitions/IVRMenuInfo.ts)
|
|
435
|
+
- `result` is of type [IVRMenuInfo](./definitions/IVRMenuInfo.ts)
|
|
436
436
|
|
|
437
437
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-updateIVRMenu) in API Explorer.
|
|
438
438
|
|
|
@@ -456,7 +456,7 @@ await rc.revoke();
|
|
|
456
456
|
|
|
457
457
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
458
458
|
- Parameter `accountId` is optional with default value `~`
|
|
459
|
-
- `result` is of type [GetCallRecordingResponse](./
|
|
459
|
+
- `result` is of type [GetCallRecordingResponse](./definitions/GetCallRecordingResponse.ts)
|
|
460
460
|
|
|
461
461
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Recordings-readCallRecording) in API Explorer.
|
|
462
462
|
|
|
@@ -479,8 +479,8 @@ await rc.revoke();
|
|
|
479
479
|
```
|
|
480
480
|
|
|
481
481
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
482
|
-
- `listCountriesParameters` is of type [ListCountriesParameters](./
|
|
483
|
-
- `result` is of type [CountryListDictionaryModel](./
|
|
482
|
+
- `listCountriesParameters` is of type [ListCountriesParameters](./definitions/ListCountriesParameters.ts)
|
|
483
|
+
- `result` is of type [CountryListDictionaryModel](./definitions/CountryListDictionaryModel.ts)
|
|
484
484
|
|
|
485
485
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-listCountries) in API Explorer.
|
|
486
486
|
|
|
@@ -503,7 +503,7 @@ await rc.revoke();
|
|
|
503
503
|
```
|
|
504
504
|
|
|
505
505
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
506
|
-
- `result` is of type [CountryInfoDictionaryModel](./
|
|
506
|
+
- `result` is of type [CountryInfoDictionaryModel](./definitions/CountryInfoDictionaryModel.ts)
|
|
507
507
|
|
|
508
508
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-readCountry) in API Explorer.
|
|
509
509
|
|
|
@@ -526,7 +526,7 @@ await rc.revoke();
|
|
|
526
526
|
```
|
|
527
527
|
|
|
528
528
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
529
|
-
- `result` is of type [SubscriptionListResource](./
|
|
529
|
+
- `result` is of type [SubscriptionListResource](./definitions/SubscriptionListResource.ts)
|
|
530
530
|
|
|
531
531
|
[Try it out](https://developer.ringcentral.com/api-reference#Subscriptions-listSubscriptions) in API Explorer.
|
|
532
532
|
|
|
@@ -549,8 +549,8 @@ await rc.revoke();
|
|
|
549
549
|
```
|
|
550
550
|
|
|
551
551
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
552
|
-
- `createSubscriptionRequest` is of type [CreateSubscriptionRequest](./
|
|
553
|
-
- `result` is of type [SubscriptionInfo](./
|
|
552
|
+
- `createSubscriptionRequest` is of type [CreateSubscriptionRequest](./definitions/CreateSubscriptionRequest.ts)
|
|
553
|
+
- `result` is of type [SubscriptionInfo](./definitions/SubscriptionInfo.ts)
|
|
554
554
|
|
|
555
555
|
[Try it out](https://developer.ringcentral.com/api-reference#Subscriptions-createSubscription) in API Explorer.
|
|
556
556
|
|
|
@@ -573,7 +573,7 @@ await rc.revoke();
|
|
|
573
573
|
```
|
|
574
574
|
|
|
575
575
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
576
|
-
- `result` is of type [SubscriptionInfo](./
|
|
576
|
+
- `result` is of type [SubscriptionInfo](./definitions/SubscriptionInfo.ts)
|
|
577
577
|
|
|
578
578
|
[Try it out](https://developer.ringcentral.com/api-reference#Subscriptions-readSubscription) in API Explorer.
|
|
579
579
|
|
|
@@ -596,8 +596,8 @@ await rc.revoke();
|
|
|
596
596
|
```
|
|
597
597
|
|
|
598
598
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
599
|
-
- `updateSubscriptionRequest` is of type [UpdateSubscriptionRequest](./
|
|
600
|
-
- `result` is of type [SubscriptionInfo](./
|
|
599
|
+
- `updateSubscriptionRequest` is of type [UpdateSubscriptionRequest](./definitions/UpdateSubscriptionRequest.ts)
|
|
600
|
+
- `result` is of type [SubscriptionInfo](./definitions/SubscriptionInfo.ts)
|
|
601
601
|
|
|
602
602
|
[Try it out](https://developer.ringcentral.com/api-reference#Subscriptions-updateSubscription) in API Explorer.
|
|
603
603
|
|
|
@@ -643,7 +643,7 @@ await rc.revoke();
|
|
|
643
643
|
```
|
|
644
644
|
|
|
645
645
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
646
|
-
- `result` is of type [SubscriptionInfo](./
|
|
646
|
+
- `result` is of type [SubscriptionInfo](./definitions/SubscriptionInfo.ts)
|
|
647
647
|
|
|
648
648
|
[Try it out](https://developer.ringcentral.com/api-reference#Subscriptions-renewSubscription) in API Explorer.
|
|
649
649
|
|
|
@@ -666,7 +666,7 @@ await rc.revoke();
|
|
|
666
666
|
```
|
|
667
667
|
|
|
668
668
|
- Parameter `version` is optional with default value `v2`
|
|
669
|
-
- `result` is of type [ScimResourceTypeSearchResponse](./
|
|
669
|
+
- `result` is of type [ScimResourceTypeSearchResponse](./definitions/ScimResourceTypeSearchResponse.ts)
|
|
670
670
|
|
|
671
671
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimListResourceTypes2) in API Explorer.
|
|
672
672
|
|
|
@@ -689,7 +689,7 @@ await rc.revoke();
|
|
|
689
689
|
```
|
|
690
690
|
|
|
691
691
|
- Parameter `version` is optional with default value `v2`
|
|
692
|
-
- `result` is of type [ScimResourceTypeResponse](./
|
|
692
|
+
- `result` is of type [ScimResourceTypeResponse](./definitions/ScimResourceTypeResponse.ts)
|
|
693
693
|
|
|
694
694
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimGetResourceType2) in API Explorer.
|
|
695
695
|
|
|
@@ -712,7 +712,7 @@ await rc.revoke();
|
|
|
712
712
|
```
|
|
713
713
|
|
|
714
714
|
- Parameter `version` is optional with default value `v2`
|
|
715
|
-
- `result` is of type [ScimSchemaSearchResponse](./
|
|
715
|
+
- `result` is of type [ScimSchemaSearchResponse](./definitions/ScimSchemaSearchResponse.ts)
|
|
716
716
|
|
|
717
717
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimListSchemas2) in API Explorer.
|
|
718
718
|
|
|
@@ -735,7 +735,7 @@ await rc.revoke();
|
|
|
735
735
|
```
|
|
736
736
|
|
|
737
737
|
- Parameter `version` is optional with default value `v2`
|
|
738
|
-
- `result` is of type [ScimSchemaResponse](./
|
|
738
|
+
- `result` is of type [ScimSchemaResponse](./definitions/ScimSchemaResponse.ts)
|
|
739
739
|
|
|
740
740
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimGetSchema2) in API Explorer.
|
|
741
741
|
|
|
@@ -758,8 +758,8 @@ await rc.revoke();
|
|
|
758
758
|
```
|
|
759
759
|
|
|
760
760
|
- Parameter `version` is optional with default value `v2`
|
|
761
|
-
- `scimSearchViaGet2Parameters` is of type [ScimSearchViaGet2Parameters](./
|
|
762
|
-
- `result` is of type [ScimUserSearchResponse](./
|
|
761
|
+
- `scimSearchViaGet2Parameters` is of type [ScimSearchViaGet2Parameters](./definitions/ScimSearchViaGet2Parameters.ts)
|
|
762
|
+
- `result` is of type [ScimUserSearchResponse](./definitions/ScimUserSearchResponse.ts)
|
|
763
763
|
|
|
764
764
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimSearchViaGet2) in API Explorer.
|
|
765
765
|
|
|
@@ -782,8 +782,8 @@ await rc.revoke();
|
|
|
782
782
|
```
|
|
783
783
|
|
|
784
784
|
- Parameter `version` is optional with default value `v2`
|
|
785
|
-
- `scimUser` is of type [ScimUser](./
|
|
786
|
-
- `result` is of type [ScimUserResponse](./
|
|
785
|
+
- `scimUser` is of type [ScimUser](./definitions/ScimUser.ts)
|
|
786
|
+
- `result` is of type [ScimUserResponse](./definitions/ScimUserResponse.ts)
|
|
787
787
|
|
|
788
788
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimCreateUser2) in API Explorer.
|
|
789
789
|
|
|
@@ -806,7 +806,7 @@ await rc.revoke();
|
|
|
806
806
|
```
|
|
807
807
|
|
|
808
808
|
- Parameter `version` is optional with default value `v2`
|
|
809
|
-
- `result` is of type [ScimUserResponse](./
|
|
809
|
+
- `result` is of type [ScimUserResponse](./definitions/ScimUserResponse.ts)
|
|
810
810
|
|
|
811
811
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimGetUser2) in API Explorer.
|
|
812
812
|
|
|
@@ -829,8 +829,8 @@ await rc.revoke();
|
|
|
829
829
|
```
|
|
830
830
|
|
|
831
831
|
- Parameter `version` is optional with default value `v2`
|
|
832
|
-
- `scimUser` is of type [ScimUser](./
|
|
833
|
-
- `result` is of type [ScimUserResponse](./
|
|
832
|
+
- `scimUser` is of type [ScimUser](./definitions/ScimUser.ts)
|
|
833
|
+
- `result` is of type [ScimUserResponse](./definitions/ScimUserResponse.ts)
|
|
834
834
|
|
|
835
835
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimUpdateUser2) in API Explorer.
|
|
836
836
|
|
|
@@ -876,8 +876,8 @@ await rc.revoke();
|
|
|
876
876
|
```
|
|
877
877
|
|
|
878
878
|
- Parameter `version` is optional with default value `v2`
|
|
879
|
-
- `scimUserPatch` is of type [ScimUserPatch](./
|
|
880
|
-
- `result` is of type [ScimUserResponse](./
|
|
879
|
+
- `scimUserPatch` is of type [ScimUserPatch](./definitions/ScimUserPatch.ts)
|
|
880
|
+
- `result` is of type [ScimUserResponse](./definitions/ScimUserResponse.ts)
|
|
881
881
|
|
|
882
882
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimPatchUser2) in API Explorer.
|
|
883
883
|
|
|
@@ -899,7 +899,7 @@ var result = await rc.restapi().oauth().revoke().post(RevokeTokenRequest);
|
|
|
899
899
|
await rc.revoke();
|
|
900
900
|
```
|
|
901
901
|
|
|
902
|
-
- `RevokeTokenRequest` is of type [RevokeTokenRequest](./
|
|
902
|
+
- `RevokeTokenRequest` is of type [RevokeTokenRequest](./definitions/RevokeTokenRequest.ts)
|
|
903
903
|
- `result` is an empty string
|
|
904
904
|
|
|
905
905
|
[Try it out](https://developer.ringcentral.com/api-reference#OAuth/OIDC-revokeToken) in API Explorer.
|
|
@@ -924,8 +924,8 @@ await rc.revoke();
|
|
|
924
924
|
|
|
925
925
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
926
926
|
- Parameter `accountId` is optional with default value `~`
|
|
927
|
-
- `readDeviceParameters` is of type [ReadDeviceParameters](./
|
|
928
|
-
- `result` is of type [GetDeviceInfoResponse](./
|
|
927
|
+
- `readDeviceParameters` is of type [ReadDeviceParameters](./definitions/ReadDeviceParameters.ts)
|
|
928
|
+
- `result` is of type [GetDeviceInfoResponse](./definitions/GetDeviceInfoResponse.ts)
|
|
929
929
|
|
|
930
930
|
[Try it out](https://developer.ringcentral.com/api-reference#Devices-readDevice) in API Explorer.
|
|
931
931
|
|
|
@@ -949,9 +949,9 @@ await rc.revoke();
|
|
|
949
949
|
|
|
950
950
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
951
951
|
- Parameter `accountId` is optional with default value `~`
|
|
952
|
-
- `accountDeviceUpdate` is of type [AccountDeviceUpdate](./
|
|
953
|
-
- `updateDeviceParameters` is of type [UpdateDeviceParameters](./
|
|
954
|
-
- `result` is of type [GetDeviceInfoResponse](./
|
|
952
|
+
- `accountDeviceUpdate` is of type [AccountDeviceUpdate](./definitions/AccountDeviceUpdate.ts)
|
|
953
|
+
- `updateDeviceParameters` is of type [UpdateDeviceParameters](./definitions/UpdateDeviceParameters.ts)
|
|
954
|
+
- `result` is of type [GetDeviceInfoResponse](./definitions/GetDeviceInfoResponse.ts)
|
|
955
955
|
|
|
956
956
|
[Try it out](https://developer.ringcentral.com/api-reference#Devices-updateDevice) in API Explorer.
|
|
957
957
|
|
|
@@ -975,7 +975,7 @@ await rc.revoke();
|
|
|
975
975
|
|
|
976
976
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
977
977
|
- Parameter `accountId` is optional with default value `~`
|
|
978
|
-
- `result` is of type [MeetingResponseResource](./
|
|
978
|
+
- `result` is of type [MeetingResponseResource](./definitions/MeetingResponseResource.ts)
|
|
979
979
|
|
|
980
980
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-readAccountMeeting) in API Explorer.
|
|
981
981
|
|
|
@@ -999,8 +999,8 @@ await rc.revoke();
|
|
|
999
999
|
|
|
1000
1000
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
1001
1001
|
- Parameter `accountId` is optional with default value `~`
|
|
1002
|
-
- `readAccountPresenceParameters` is of type [ReadAccountPresenceParameters](./
|
|
1003
|
-
- `result` is of type [AccountPresenceInfo](./
|
|
1002
|
+
- `readAccountPresenceParameters` is of type [ReadAccountPresenceParameters](./definitions/ReadAccountPresenceParameters.ts)
|
|
1003
|
+
- `result` is of type [AccountPresenceInfo](./definitions/AccountPresenceInfo.ts)
|
|
1004
1004
|
|
|
1005
1005
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-readAccountPresence) in API Explorer.
|
|
1006
1006
|
|
|
@@ -1023,8 +1023,8 @@ await rc.revoke();
|
|
|
1023
1023
|
```
|
|
1024
1024
|
|
|
1025
1025
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
1026
|
-
- `listStatesParameters` is of type [ListStatesParameters](./
|
|
1027
|
-
- `result` is of type [GetStateListResponse](./
|
|
1026
|
+
- `listStatesParameters` is of type [ListStatesParameters](./definitions/ListStatesParameters.ts)
|
|
1027
|
+
- `result` is of type [GetStateListResponse](./definitions/GetStateListResponse.ts)
|
|
1028
1028
|
|
|
1029
1029
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-listStates) in API Explorer.
|
|
1030
1030
|
|
|
@@ -1047,7 +1047,7 @@ await rc.revoke();
|
|
|
1047
1047
|
```
|
|
1048
1048
|
|
|
1049
1049
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
1050
|
-
- `result` is of type [GetStateInfoResponse](./
|
|
1050
|
+
- `result` is of type [GetStateInfoResponse](./definitions/GetStateInfoResponse.ts)
|
|
1051
1051
|
|
|
1052
1052
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-readState) in API Explorer.
|
|
1053
1053
|
|
|
@@ -1070,7 +1070,7 @@ await rc.revoke();
|
|
|
1070
1070
|
```
|
|
1071
1071
|
|
|
1072
1072
|
- Parameter `version` is optional with default value `v2`
|
|
1073
|
-
- `result` is of type [ScimProviderConfig](./
|
|
1073
|
+
- `result` is of type [ScimProviderConfig](./definitions/ScimProviderConfig.ts)
|
|
1074
1074
|
|
|
1075
1075
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimGetProviderConfig2) in API Explorer.
|
|
1076
1076
|
|
|
@@ -1093,8 +1093,8 @@ await rc.revoke();
|
|
|
1093
1093
|
```
|
|
1094
1094
|
|
|
1095
1095
|
- Parameter `version` is optional with default value `v2`
|
|
1096
|
-
- `scimSearchRequest` is of type [ScimSearchRequest](./
|
|
1097
|
-
- `result` is of type [ScimUserSearchResponse](./
|
|
1096
|
+
- `scimSearchRequest` is of type [ScimSearchRequest](./definitions/ScimSearchRequest.ts)
|
|
1097
|
+
- `result` is of type [ScimUserSearchResponse](./definitions/ScimUserSearchResponse.ts)
|
|
1098
1098
|
|
|
1099
1099
|
[Try it out](https://developer.ringcentral.com/api-reference#SCIM-scimSearchViaPost2) in API Explorer.
|
|
1100
1100
|
|
|
@@ -1116,8 +1116,8 @@ var result = await rc.teamMessaging(version).chats().list(listGlipChatsNewParame
|
|
|
1116
1116
|
await rc.revoke();
|
|
1117
1117
|
```
|
|
1118
1118
|
|
|
1119
|
-
- `listGlipChatsNewParameters` is of type [ListGlipChatsNewParameters](./
|
|
1120
|
-
- `result` is of type [TMChatList](./
|
|
1119
|
+
- `listGlipChatsNewParameters` is of type [ListGlipChatsNewParameters](./definitions/ListGlipChatsNewParameters.ts)
|
|
1120
|
+
- `result` is of type [TMChatList](./definitions/TMChatList.ts)
|
|
1121
1121
|
|
|
1122
1122
|
[Try it out](https://developer.ringcentral.com/api-reference#Chats-listGlipChatsNew) in API Explorer.
|
|
1123
1123
|
|
|
@@ -1139,7 +1139,7 @@ var result = await rc.teamMessaging(version).chats(chatId).get();
|
|
|
1139
1139
|
await rc.revoke();
|
|
1140
1140
|
```
|
|
1141
1141
|
|
|
1142
|
-
- `result` is of type [TMChatInfo](./
|
|
1142
|
+
- `result` is of type [TMChatInfo](./definitions/TMChatInfo.ts)
|
|
1143
1143
|
|
|
1144
1144
|
[Try it out](https://developer.ringcentral.com/api-reference#Chats-readGlipChatNew) in API Explorer.
|
|
1145
1145
|
|
|
@@ -1161,8 +1161,8 @@ var result = await rc.teamMessaging(version).chats(chatId).posts().list(readGlip
|
|
|
1161
1161
|
await rc.revoke();
|
|
1162
1162
|
```
|
|
1163
1163
|
|
|
1164
|
-
- `readGlipPostsNewParameters` is of type [ReadGlipPostsNewParameters](./
|
|
1165
|
-
- `result` is of type [TMPostsList](./
|
|
1164
|
+
- `readGlipPostsNewParameters` is of type [ReadGlipPostsNewParameters](./definitions/ReadGlipPostsNewParameters.ts)
|
|
1165
|
+
- `result` is of type [TMPostsList](./definitions/TMPostsList.ts)
|
|
1166
1166
|
|
|
1167
1167
|
[Try it out](https://developer.ringcentral.com/api-reference#Posts-readGlipPostsNew) in API Explorer.
|
|
1168
1168
|
|
|
@@ -1184,8 +1184,8 @@ var result = await rc.teamMessaging(version).chats(chatId).posts().post(tMCreate
|
|
|
1184
1184
|
await rc.revoke();
|
|
1185
1185
|
```
|
|
1186
1186
|
|
|
1187
|
-
- `tMCreatePostRequest` is of type [TMCreatePostRequest](./
|
|
1188
|
-
- `result` is of type [TMPostInfo](./
|
|
1187
|
+
- `tMCreatePostRequest` is of type [TMCreatePostRequest](./definitions/TMCreatePostRequest.ts)
|
|
1188
|
+
- `result` is of type [TMPostInfo](./definitions/TMPostInfo.ts)
|
|
1189
1189
|
|
|
1190
1190
|
[Try it out](https://developer.ringcentral.com/api-reference#Posts-createGlipPostNew) in API Explorer.
|
|
1191
1191
|
|
|
@@ -1207,7 +1207,7 @@ var result = await rc.teamMessaging(version).chats(chatId).posts(postId).get();
|
|
|
1207
1207
|
await rc.revoke();
|
|
1208
1208
|
```
|
|
1209
1209
|
|
|
1210
|
-
- `result` is of type [TMPostInfo](./
|
|
1210
|
+
- `result` is of type [TMPostInfo](./definitions/TMPostInfo.ts)
|
|
1211
1211
|
|
|
1212
1212
|
[Try it out](https://developer.ringcentral.com/api-reference#Posts-readGlipPostNew) in API Explorer.
|
|
1213
1213
|
|
|
@@ -1251,8 +1251,8 @@ var result = await rc.teamMessaging(version).chats(chatId).posts(postId).patch(t
|
|
|
1251
1251
|
await rc.revoke();
|
|
1252
1252
|
```
|
|
1253
1253
|
|
|
1254
|
-
- `tMUpdatePostRequest` is of type [TMUpdatePostRequest](./
|
|
1255
|
-
- `result` is of type [TMPostInfo](./
|
|
1254
|
+
- `tMUpdatePostRequest` is of type [TMUpdatePostRequest](./definitions/TMUpdatePostRequest.ts)
|
|
1255
|
+
- `result` is of type [TMPostInfo](./definitions/TMPostInfo.ts)
|
|
1256
1256
|
|
|
1257
1257
|
[Try it out](https://developer.ringcentral.com/api-reference#Posts-patchGlipPostNew) in API Explorer.
|
|
1258
1258
|
|
|
@@ -1274,8 +1274,8 @@ var result = await rc.teamMessaging(version).chats(chatId).tasks().get(listChatT
|
|
|
1274
1274
|
await rc.revoke();
|
|
1275
1275
|
```
|
|
1276
1276
|
|
|
1277
|
-
- `listChatTasksNewParameters` is of type [ListChatTasksNewParameters](./
|
|
1278
|
-
- `result` is of type [TMTaskList](./
|
|
1277
|
+
- `listChatTasksNewParameters` is of type [ListChatTasksNewParameters](./definitions/ListChatTasksNewParameters.ts)
|
|
1278
|
+
- `result` is of type [TMTaskList](./definitions/TMTaskList.ts)
|
|
1279
1279
|
|
|
1280
1280
|
[Try it out](https://developer.ringcentral.com/api-reference#Tasks-listChatTasksNew) in API Explorer.
|
|
1281
1281
|
|
|
@@ -1297,8 +1297,8 @@ var result = await rc.teamMessaging(version).chats(chatId).tasks().post(tMCreate
|
|
|
1297
1297
|
await rc.revoke();
|
|
1298
1298
|
```
|
|
1299
1299
|
|
|
1300
|
-
- `tMCreateTaskRequest` is of type [TMCreateTaskRequest](./
|
|
1301
|
-
- `result` is of type [TMTaskInfo](./
|
|
1300
|
+
- `tMCreateTaskRequest` is of type [TMCreateTaskRequest](./definitions/TMCreateTaskRequest.ts)
|
|
1301
|
+
- `result` is of type [TMTaskInfo](./definitions/TMTaskInfo.ts)
|
|
1302
1302
|
|
|
1303
1303
|
[Try it out](https://developer.ringcentral.com/api-reference#Tasks-createTaskNew) in API Explorer.
|
|
1304
1304
|
|
|
@@ -1320,7 +1320,7 @@ var result = await rc.teamMessaging(version).companies(companyId).get();
|
|
|
1320
1320
|
await rc.revoke();
|
|
1321
1321
|
```
|
|
1322
1322
|
|
|
1323
|
-
- `result` is of type [TMCompanyInfo](./
|
|
1323
|
+
- `result` is of type [TMCompanyInfo](./definitions/TMCompanyInfo.ts)
|
|
1324
1324
|
|
|
1325
1325
|
[Try it out](https://developer.ringcentral.com/api-reference#Profile-readTMCompanyInfoNew) in API Explorer.
|
|
1326
1326
|
|
|
@@ -1342,8 +1342,8 @@ var result = await rc.teamMessaging(version).events().list(readGlipEventsNewPara
|
|
|
1342
1342
|
await rc.revoke();
|
|
1343
1343
|
```
|
|
1344
1344
|
|
|
1345
|
-
- `readGlipEventsNewParameters` is of type [ReadGlipEventsNewParameters](./
|
|
1346
|
-
- `result` is of type [TMEventList](./
|
|
1345
|
+
- `readGlipEventsNewParameters` is of type [ReadGlipEventsNewParameters](./definitions/ReadGlipEventsNewParameters.ts)
|
|
1346
|
+
- `result` is of type [TMEventList](./definitions/TMEventList.ts)
|
|
1347
1347
|
|
|
1348
1348
|
[Try it out](https://developer.ringcentral.com/api-reference#Calendar-Events-readGlipEventsNew) in API Explorer.
|
|
1349
1349
|
|
|
@@ -1365,8 +1365,8 @@ var result = await rc.teamMessaging(version).events().post(tMCreateEventRequest)
|
|
|
1365
1365
|
await rc.revoke();
|
|
1366
1366
|
```
|
|
1367
1367
|
|
|
1368
|
-
- `tMCreateEventRequest` is of type [TMCreateEventRequest](./
|
|
1369
|
-
- `result` is of type [TMEventInfo](./
|
|
1368
|
+
- `tMCreateEventRequest` is of type [TMCreateEventRequest](./definitions/TMCreateEventRequest.ts)
|
|
1369
|
+
- `result` is of type [TMEventInfo](./definitions/TMEventInfo.ts)
|
|
1370
1370
|
|
|
1371
1371
|
[Try it out](https://developer.ringcentral.com/api-reference#Calendar-Events-createEventNew) in API Explorer.
|
|
1372
1372
|
|
|
@@ -1388,7 +1388,7 @@ var result = await rc.teamMessaging(version).events(eventId).get();
|
|
|
1388
1388
|
await rc.revoke();
|
|
1389
1389
|
```
|
|
1390
1390
|
|
|
1391
|
-
- `result` is of type [TMEventInfo](./
|
|
1391
|
+
- `result` is of type [TMEventInfo](./definitions/TMEventInfo.ts)
|
|
1392
1392
|
|
|
1393
1393
|
[Try it out](https://developer.ringcentral.com/api-reference#Calendar-Events-readEventNew) in API Explorer.
|
|
1394
1394
|
|
|
@@ -1410,8 +1410,8 @@ var result = await rc.teamMessaging(version).events(eventId).put(tMCreateEventRe
|
|
|
1410
1410
|
await rc.revoke();
|
|
1411
1411
|
```
|
|
1412
1412
|
|
|
1413
|
-
- `tMCreateEventRequest` is of type [TMCreateEventRequest](./
|
|
1414
|
-
- `result` is of type [TMEventInfo](./
|
|
1413
|
+
- `tMCreateEventRequest` is of type [TMCreateEventRequest](./definitions/TMCreateEventRequest.ts)
|
|
1414
|
+
- `result` is of type [TMEventInfo](./definitions/TMEventInfo.ts)
|
|
1415
1415
|
|
|
1416
1416
|
[Try it out](https://developer.ringcentral.com/api-reference#Calendar-Events-updateEventNew) in API Explorer.
|
|
1417
1417
|
|
|
@@ -1455,7 +1455,7 @@ var result = await rc.teamMessaging(version).everyone().get();
|
|
|
1455
1455
|
await rc.revoke();
|
|
1456
1456
|
```
|
|
1457
1457
|
|
|
1458
|
-
- `result` is of type [EveryoneTeamInfo](./
|
|
1458
|
+
- `result` is of type [EveryoneTeamInfo](./definitions/EveryoneTeamInfo.ts)
|
|
1459
1459
|
|
|
1460
1460
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-readGlipEveryoneNew) in API Explorer.
|
|
1461
1461
|
|
|
@@ -1477,8 +1477,8 @@ var result = await rc.teamMessaging(version).everyone().patch(updateEveryoneTeam
|
|
|
1477
1477
|
await rc.revoke();
|
|
1478
1478
|
```
|
|
1479
1479
|
|
|
1480
|
-
- `updateEveryoneTeamRequest` is of type [UpdateEveryoneTeamRequest](./
|
|
1481
|
-
- `result` is of type [EveryoneTeamInfo](./
|
|
1480
|
+
- `updateEveryoneTeamRequest` is of type [UpdateEveryoneTeamRequest](./definitions/UpdateEveryoneTeamRequest.ts)
|
|
1481
|
+
- `result` is of type [EveryoneTeamInfo](./definitions/EveryoneTeamInfo.ts)
|
|
1482
1482
|
|
|
1483
1483
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-patchGlipEveryoneNew) in API Explorer.
|
|
1484
1484
|
|
|
@@ -1500,8 +1500,8 @@ var result = await rc.teamMessaging(version).favorites().get(listFavoriteChatsNe
|
|
|
1500
1500
|
await rc.revoke();
|
|
1501
1501
|
```
|
|
1502
1502
|
|
|
1503
|
-
- `listFavoriteChatsNewParameters` is of type [ListFavoriteChatsNewParameters](./
|
|
1504
|
-
- `result` is of type [TMChatListWithoutNavigation](./
|
|
1503
|
+
- `listFavoriteChatsNewParameters` is of type [ListFavoriteChatsNewParameters](./definitions/ListFavoriteChatsNewParameters.ts)
|
|
1504
|
+
- `result` is of type [TMChatListWithoutNavigation](./definitions/TMChatListWithoutNavigation.ts)
|
|
1505
1505
|
|
|
1506
1506
|
[Try it out](https://developer.ringcentral.com/api-reference#Chats-listFavoriteChatsNew) in API Explorer.
|
|
1507
1507
|
|
|
@@ -1523,9 +1523,9 @@ var result = await rc.teamMessaging(version).files().post(createGlipFileNewReque
|
|
|
1523
1523
|
await rc.revoke();
|
|
1524
1524
|
```
|
|
1525
1525
|
|
|
1526
|
-
- `createGlipFileNewRequest` is of type [CreateGlipFileNewRequest](./
|
|
1527
|
-
- `createGlipFileNewParameters` is of type [CreateGlipFileNewParameters](./
|
|
1528
|
-
- `result` is of type [TMAddFileRequest](./
|
|
1526
|
+
- `createGlipFileNewRequest` is of type [CreateGlipFileNewRequest](./definitions/CreateGlipFileNewRequest.ts)
|
|
1527
|
+
- `createGlipFileNewParameters` is of type [CreateGlipFileNewParameters](./definitions/CreateGlipFileNewParameters.ts)
|
|
1528
|
+
- `result` is of type [TMAddFileRequest](./definitions/TMAddFileRequest.ts)
|
|
1529
1529
|
|
|
1530
1530
|
[Try it out](https://developer.ringcentral.com/api-reference#Posts-createGlipFileNew) in API Explorer.
|
|
1531
1531
|
|
|
@@ -1547,7 +1547,7 @@ var result = await rc.teamMessaging(version).notes(noteId).get();
|
|
|
1547
1547
|
await rc.revoke();
|
|
1548
1548
|
```
|
|
1549
1549
|
|
|
1550
|
-
- `result` is of type [TMNoteWithBodyInfo](./
|
|
1550
|
+
- `result` is of type [TMNoteWithBodyInfo](./definitions/TMNoteWithBodyInfo.ts)
|
|
1551
1551
|
|
|
1552
1552
|
[Try it out](https://developer.ringcentral.com/api-reference#Notes-readUserNoteNew) in API Explorer.
|
|
1553
1553
|
|
|
@@ -1591,9 +1591,9 @@ var result = await rc.teamMessaging(version).notes(noteId).patch(tMCreateNoteReq
|
|
|
1591
1591
|
await rc.revoke();
|
|
1592
1592
|
```
|
|
1593
1593
|
|
|
1594
|
-
- `tMCreateNoteRequest` is of type [TMCreateNoteRequest](./
|
|
1595
|
-
- `patchNoteNewParameters` is of type [PatchNoteNewParameters](./
|
|
1596
|
-
- `result` is of type [TMNoteInfo](./
|
|
1594
|
+
- `tMCreateNoteRequest` is of type [TMCreateNoteRequest](./definitions/TMCreateNoteRequest.ts)
|
|
1595
|
+
- `patchNoteNewParameters` is of type [PatchNoteNewParameters](./definitions/PatchNoteNewParameters.ts)
|
|
1596
|
+
- `result` is of type [TMNoteInfo](./definitions/TMNoteInfo.ts)
|
|
1597
1597
|
|
|
1598
1598
|
[Try it out](https://developer.ringcentral.com/api-reference#Notes-patchNoteNew) in API Explorer.
|
|
1599
1599
|
|
|
@@ -1615,7 +1615,7 @@ var result = await rc.teamMessaging(version).tasks(taskId).get();
|
|
|
1615
1615
|
await rc.revoke();
|
|
1616
1616
|
```
|
|
1617
1617
|
|
|
1618
|
-
- `result` is of type [TMTaskInfo](./
|
|
1618
|
+
- `result` is of type [TMTaskInfo](./definitions/TMTaskInfo.ts)
|
|
1619
1619
|
|
|
1620
1620
|
[Try it out](https://developer.ringcentral.com/api-reference#Tasks-readTaskNew) in API Explorer.
|
|
1621
1621
|
|
|
@@ -1659,8 +1659,8 @@ var result = await rc.teamMessaging(version).tasks(taskId).patch(tMUpdateTaskReq
|
|
|
1659
1659
|
await rc.revoke();
|
|
1660
1660
|
```
|
|
1661
1661
|
|
|
1662
|
-
- `tMUpdateTaskRequest` is of type [TMUpdateTaskRequest](./
|
|
1663
|
-
- `result` is of type [TMTaskList](./
|
|
1662
|
+
- `tMUpdateTaskRequest` is of type [TMUpdateTaskRequest](./definitions/TMUpdateTaskRequest.ts)
|
|
1663
|
+
- `result` is of type [TMTaskList](./definitions/TMTaskList.ts)
|
|
1664
1664
|
|
|
1665
1665
|
[Try it out](https://developer.ringcentral.com/api-reference#Tasks-patchTaskNew) in API Explorer.
|
|
1666
1666
|
|
|
@@ -1682,8 +1682,8 @@ var result = await rc.teamMessaging(version).teams().list(listGlipTeamsNewParame
|
|
|
1682
1682
|
await rc.revoke();
|
|
1683
1683
|
```
|
|
1684
1684
|
|
|
1685
|
-
- `listGlipTeamsNewParameters` is of type [ListGlipTeamsNewParameters](./
|
|
1686
|
-
- `result` is of type [TMTeamList](./
|
|
1685
|
+
- `listGlipTeamsNewParameters` is of type [ListGlipTeamsNewParameters](./definitions/ListGlipTeamsNewParameters.ts)
|
|
1686
|
+
- `result` is of type [TMTeamList](./definitions/TMTeamList.ts)
|
|
1687
1687
|
|
|
1688
1688
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-listGlipTeamsNew) in API Explorer.
|
|
1689
1689
|
|
|
@@ -1705,8 +1705,8 @@ var result = await rc.teamMessaging(version).teams().post(tMCreateTeamRequest);
|
|
|
1705
1705
|
await rc.revoke();
|
|
1706
1706
|
```
|
|
1707
1707
|
|
|
1708
|
-
- `tMCreateTeamRequest` is of type [TMCreateTeamRequest](./
|
|
1709
|
-
- `result` is of type [TMTeamInfo](./
|
|
1708
|
+
- `tMCreateTeamRequest` is of type [TMCreateTeamRequest](./definitions/TMCreateTeamRequest.ts)
|
|
1709
|
+
- `result` is of type [TMTeamInfo](./definitions/TMTeamInfo.ts)
|
|
1710
1710
|
|
|
1711
1711
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-createGlipTeamNew) in API Explorer.
|
|
1712
1712
|
|
|
@@ -1728,7 +1728,7 @@ var result = await rc.teamMessaging(version).teams(chatId).get();
|
|
|
1728
1728
|
await rc.revoke();
|
|
1729
1729
|
```
|
|
1730
1730
|
|
|
1731
|
-
- `result` is of type [TMTeamInfo](./
|
|
1731
|
+
- `result` is of type [TMTeamInfo](./definitions/TMTeamInfo.ts)
|
|
1732
1732
|
|
|
1733
1733
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-readGlipTeamNew) in API Explorer.
|
|
1734
1734
|
|
|
@@ -1772,8 +1772,8 @@ var result = await rc.teamMessaging(version).teams(chatId).patch(tMUpdateTeamReq
|
|
|
1772
1772
|
await rc.revoke();
|
|
1773
1773
|
```
|
|
1774
1774
|
|
|
1775
|
-
- `tMUpdateTeamRequest` is of type [TMUpdateTeamRequest](./
|
|
1776
|
-
- `result` is of type [TMTeamInfo](./
|
|
1775
|
+
- `tMUpdateTeamRequest` is of type [TMUpdateTeamRequest](./definitions/TMUpdateTeamRequest.ts)
|
|
1776
|
+
- `result` is of type [TMTeamInfo](./definitions/TMTeamInfo.ts)
|
|
1777
1777
|
|
|
1778
1778
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-patchGlipTeamNew) in API Explorer.
|
|
1779
1779
|
|
|
@@ -1795,8 +1795,8 @@ var result = await rc.teamMessaging(version).chats(chatId).notes().get(listChatN
|
|
|
1795
1795
|
await rc.revoke();
|
|
1796
1796
|
```
|
|
1797
1797
|
|
|
1798
|
-
- `listChatNotesNewParameters` is of type [ListChatNotesNewParameters](./
|
|
1799
|
-
- `result` is of type [TMNoteList](./
|
|
1798
|
+
- `listChatNotesNewParameters` is of type [ListChatNotesNewParameters](./definitions/ListChatNotesNewParameters.ts)
|
|
1799
|
+
- `result` is of type [TMNoteList](./definitions/TMNoteList.ts)
|
|
1800
1800
|
|
|
1801
1801
|
[Try it out](https://developer.ringcentral.com/api-reference#Notes-listChatNotesNew) in API Explorer.
|
|
1802
1802
|
|
|
@@ -1818,8 +1818,8 @@ var result = await rc.teamMessaging(version).chats(chatId).notes().post(tMCreate
|
|
|
1818
1818
|
await rc.revoke();
|
|
1819
1819
|
```
|
|
1820
1820
|
|
|
1821
|
-
- `tMCreateNoteRequest` is of type [TMCreateNoteRequest](./
|
|
1822
|
-
- `result` is of type [TMNoteInfo](./
|
|
1821
|
+
- `tMCreateNoteRequest` is of type [TMCreateNoteRequest](./definitions/TMCreateNoteRequest.ts)
|
|
1822
|
+
- `result` is of type [TMNoteInfo](./definitions/TMNoteInfo.ts)
|
|
1823
1823
|
|
|
1824
1824
|
[Try it out](https://developer.ringcentral.com/api-reference#Notes-createChatNoteNew) in API Explorer.
|
|
1825
1825
|
|
|
@@ -1841,8 +1841,8 @@ var result = await rc.teamMessaging(version).dataExport().list(listDataExportTas
|
|
|
1841
1841
|
await rc.revoke();
|
|
1842
1842
|
```
|
|
1843
1843
|
|
|
1844
|
-
- `listDataExportTasksNewParameters` is of type [ListDataExportTasksNewParameters](./
|
|
1845
|
-
- `result` is of type [DataExportTaskList](./
|
|
1844
|
+
- `listDataExportTasksNewParameters` is of type [ListDataExportTasksNewParameters](./definitions/ListDataExportTasksNewParameters.ts)
|
|
1845
|
+
- `result` is of type [DataExportTaskList](./definitions/DataExportTaskList.ts)
|
|
1846
1846
|
|
|
1847
1847
|
[Try it out](https://developer.ringcentral.com/api-reference#Compliance-Exports-listDataExportTasksNew) in API Explorer.
|
|
1848
1848
|
|
|
@@ -1864,8 +1864,8 @@ var result = await rc.teamMessaging(version).dataExport().post(createDataExportT
|
|
|
1864
1864
|
await rc.revoke();
|
|
1865
1865
|
```
|
|
1866
1866
|
|
|
1867
|
-
- `createDataExportTaskRequest` is of type [CreateDataExportTaskRequest](./
|
|
1868
|
-
- `result` is of type [DataExportTask](./
|
|
1867
|
+
- `createDataExportTaskRequest` is of type [CreateDataExportTaskRequest](./definitions/CreateDataExportTaskRequest.ts)
|
|
1868
|
+
- `result` is of type [DataExportTask](./definitions/DataExportTask.ts)
|
|
1869
1869
|
|
|
1870
1870
|
[Try it out](https://developer.ringcentral.com/api-reference#Compliance-Exports-createDataExportTaskNew) in API Explorer.
|
|
1871
1871
|
|
|
@@ -1887,7 +1887,7 @@ var result = await rc.teamMessaging(version).dataExport(taskId).get();
|
|
|
1887
1887
|
await rc.revoke();
|
|
1888
1888
|
```
|
|
1889
1889
|
|
|
1890
|
-
- `result` is of type [DataExportTask](./
|
|
1890
|
+
- `result` is of type [DataExportTask](./definitions/DataExportTask.ts)
|
|
1891
1891
|
|
|
1892
1892
|
[Try it out](https://developer.ringcentral.com/api-reference#Compliance-Exports-readDataExportTaskNew) in API Explorer.
|
|
1893
1893
|
|
|
@@ -1931,7 +1931,7 @@ var result = await rc.teamMessaging(version).persons(personId).get();
|
|
|
1931
1931
|
await rc.revoke();
|
|
1932
1932
|
```
|
|
1933
1933
|
|
|
1934
|
-
- `result` is of type [TMPersonInfo](./
|
|
1934
|
+
- `result` is of type [TMPersonInfo](./definitions/TMPersonInfo.ts)
|
|
1935
1935
|
|
|
1936
1936
|
[Try it out](https://developer.ringcentral.com/api-reference#Profile-readGlipPersonNew) in API Explorer.
|
|
1937
1937
|
|
|
@@ -1953,7 +1953,7 @@ var result = await rc.teamMessaging(version).webhooks().list();
|
|
|
1953
1953
|
await rc.revoke();
|
|
1954
1954
|
```
|
|
1955
1955
|
|
|
1956
|
-
- `result` is of type [TMWebhookList](./
|
|
1956
|
+
- `result` is of type [TMWebhookList](./definitions/TMWebhookList.ts)
|
|
1957
1957
|
|
|
1958
1958
|
[Try it out](https://developer.ringcentral.com/api-reference#Incoming-Webhooks-listGlipWebhooksNew) in API Explorer.
|
|
1959
1959
|
|
|
@@ -1975,7 +1975,7 @@ var result = await rc.teamMessaging(version).webhooks(webhookId).get();
|
|
|
1975
1975
|
await rc.revoke();
|
|
1976
1976
|
```
|
|
1977
1977
|
|
|
1978
|
-
- `result` is of type [TMWebhookList](./
|
|
1978
|
+
- `result` is of type [TMWebhookList](./definitions/TMWebhookList.ts)
|
|
1979
1979
|
|
|
1980
1980
|
[Try it out](https://developer.ringcentral.com/api-reference#Incoming-Webhooks-readGlipWebhookNew) in API Explorer.
|
|
1981
1981
|
|
|
@@ -2019,7 +2019,7 @@ var result = await rc.teamMessaging(version).teams(chatId).add().post(tMAddTeamM
|
|
|
2019
2019
|
await rc.revoke();
|
|
2020
2020
|
```
|
|
2021
2021
|
|
|
2022
|
-
- `tMAddTeamMembersRequest` is of type [TMAddTeamMembersRequest](./
|
|
2022
|
+
- `tMAddTeamMembersRequest` is of type [TMAddTeamMembersRequest](./definitions/TMAddTeamMembersRequest.ts)
|
|
2023
2023
|
- `result` is an empty string
|
|
2024
2024
|
|
|
2025
2025
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-addGlipTeamMembersNew) in API Explorer.
|
|
@@ -2044,8 +2044,8 @@ await rc.revoke();
|
|
|
2044
2044
|
|
|
2045
2045
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2046
2046
|
- Parameter `accountId` is optional with default value `~`
|
|
2047
|
-
- `listUserTemplatesParameters` is of type [ListUserTemplatesParameters](./
|
|
2048
|
-
- `result` is of type [UserTemplates](./
|
|
2047
|
+
- `listUserTemplatesParameters` is of type [ListUserTemplatesParameters](./definitions/ListUserTemplatesParameters.ts)
|
|
2048
|
+
- `result` is of type [UserTemplates](./definitions/UserTemplates.ts)
|
|
2049
2049
|
|
|
2050
2050
|
[Try it out](https://developer.ringcentral.com/api-reference#Extensions-listUserTemplates) in API Explorer.
|
|
2051
2051
|
|
|
@@ -2069,7 +2069,7 @@ await rc.revoke();
|
|
|
2069
2069
|
|
|
2070
2070
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2071
2071
|
- Parameter `accountId` is optional with default value `~`
|
|
2072
|
-
- `result` is of type [TemplateInfo](./
|
|
2072
|
+
- `result` is of type [TemplateInfo](./definitions/TemplateInfo.ts)
|
|
2073
2073
|
|
|
2074
2074
|
[Try it out](https://developer.ringcentral.com/api-reference#Extensions-readUserTemplate) in API Explorer.
|
|
2075
2075
|
|
|
@@ -2093,8 +2093,8 @@ await rc.revoke();
|
|
|
2093
2093
|
|
|
2094
2094
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2095
2095
|
- Parameter `accountId` is optional with default value `~`
|
|
2096
|
-
- `listUserRolesParameters` is of type [ListUserRolesParameters](./
|
|
2097
|
-
- `result` is of type [RolesCollectionResource](./
|
|
2096
|
+
- `listUserRolesParameters` is of type [ListUserRolesParameters](./definitions/ListUserRolesParameters.ts)
|
|
2097
|
+
- `result` is of type [RolesCollectionResource](./definitions/RolesCollectionResource.ts)
|
|
2098
2098
|
|
|
2099
2099
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-listUserRoles) in API Explorer.
|
|
2100
2100
|
|
|
@@ -2118,7 +2118,7 @@ await rc.revoke();
|
|
|
2118
2118
|
|
|
2119
2119
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2120
2120
|
- Parameter `accountId` is optional with default value `~`
|
|
2121
|
-
- `roleResource` is of type [RoleResource](./
|
|
2121
|
+
- `roleResource` is of type [RoleResource](./definitions/RoleResource.ts)
|
|
2122
2122
|
- `result` is an empty string
|
|
2123
2123
|
|
|
2124
2124
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-createCustomRole) in API Explorer.
|
|
@@ -2143,7 +2143,7 @@ await rc.revoke();
|
|
|
2143
2143
|
|
|
2144
2144
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2145
2145
|
- Parameter `accountId` is optional with default value `~`
|
|
2146
|
-
- `result` is of type [RoleResource](./
|
|
2146
|
+
- `result` is of type [RoleResource](./definitions/RoleResource.ts)
|
|
2147
2147
|
|
|
2148
2148
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-readUserRole) in API Explorer.
|
|
2149
2149
|
|
|
@@ -2167,7 +2167,7 @@ await rc.revoke();
|
|
|
2167
2167
|
|
|
2168
2168
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2169
2169
|
- Parameter `accountId` is optional with default value `~`
|
|
2170
|
-
- `roleResource` is of type [RoleResource](./
|
|
2170
|
+
- `roleResource` is of type [RoleResource](./definitions/RoleResource.ts)
|
|
2171
2171
|
- `result` is an empty string
|
|
2172
2172
|
|
|
2173
2173
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-updateUserRole) in API Explorer.
|
|
@@ -2192,7 +2192,7 @@ await rc.revoke();
|
|
|
2192
2192
|
|
|
2193
2193
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2194
2194
|
- Parameter `accountId` is optional with default value `~`
|
|
2195
|
-
- `deleteCustomRoleParameters` is of type [DeleteCustomRoleParameters](./
|
|
2195
|
+
- `deleteCustomRoleParameters` is of type [DeleteCustomRoleParameters](./definitions/DeleteCustomRoleParameters.ts)
|
|
2196
2196
|
- `result` is an empty string
|
|
2197
2197
|
|
|
2198
2198
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-deleteCustomRole) in API Explorer.
|
|
@@ -2237,7 +2237,7 @@ var result = await rc.teamMessaging(version).preferences().get();
|
|
|
2237
2237
|
await rc.revoke();
|
|
2238
2238
|
```
|
|
2239
2239
|
|
|
2240
|
-
- `result` is of type [TMPreferencesInfo](./
|
|
2240
|
+
- `result` is of type [TMPreferencesInfo](./definitions/TMPreferencesInfo.ts)
|
|
2241
2241
|
|
|
2242
2242
|
[Try it out](https://developer.ringcentral.com/api-reference#Profile-readGlipPreferencesNew) in API Explorer.
|
|
2243
2243
|
|
|
@@ -2283,8 +2283,8 @@ await rc.revoke();
|
|
|
2283
2283
|
|
|
2284
2284
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2285
2285
|
- Parameter `accountId` is optional with default value `~`
|
|
2286
|
-
- `listA2PBatchesParameters` is of type [ListA2PBatchesParameters](./
|
|
2287
|
-
- `result` is of type [BatchListResponse](./
|
|
2286
|
+
- `listA2PBatchesParameters` is of type [ListA2PBatchesParameters](./definitions/ListA2PBatchesParameters.ts)
|
|
2287
|
+
- `result` is of type [BatchListResponse](./definitions/BatchListResponse.ts)
|
|
2288
2288
|
|
|
2289
2289
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-listA2PBatches) in API Explorer.
|
|
2290
2290
|
|
|
@@ -2308,8 +2308,8 @@ await rc.revoke();
|
|
|
2308
2308
|
|
|
2309
2309
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2310
2310
|
- Parameter `accountId` is optional with default value `~`
|
|
2311
|
-
- `messageBatchCreateRequest` is of type [MessageBatchCreateRequest](./
|
|
2312
|
-
- `result` is of type [MessageBatchResponse](./
|
|
2311
|
+
- `messageBatchCreateRequest` is of type [MessageBatchCreateRequest](./definitions/MessageBatchCreateRequest.ts)
|
|
2312
|
+
- `result` is of type [MessageBatchResponse](./definitions/MessageBatchResponse.ts)
|
|
2313
2313
|
|
|
2314
2314
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-createA2PSMS) in API Explorer.
|
|
2315
2315
|
|
|
@@ -2333,7 +2333,7 @@ await rc.revoke();
|
|
|
2333
2333
|
|
|
2334
2334
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2335
2335
|
- Parameter `accountId` is optional with default value `~`
|
|
2336
|
-
- `result` is of type [MessageBatchResponse](./
|
|
2336
|
+
- `result` is of type [MessageBatchResponse](./definitions/MessageBatchResponse.ts)
|
|
2337
2337
|
|
|
2338
2338
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-readA2PBatch) in API Explorer.
|
|
2339
2339
|
|
|
@@ -2357,8 +2357,8 @@ await rc.revoke();
|
|
|
2357
2357
|
|
|
2358
2358
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2359
2359
|
- Parameter `accountId` is optional with default value `~`
|
|
2360
|
-
- `listA2PSMSParameters` is of type [ListA2PSMSParameters](./
|
|
2361
|
-
- `result` is of type [MessageListResponse](./
|
|
2360
|
+
- `listA2PSMSParameters` is of type [ListA2PSMSParameters](./definitions/ListA2PSMSParameters.ts)
|
|
2361
|
+
- `result` is of type [MessageListResponse](./definitions/MessageListResponse.ts)
|
|
2362
2362
|
|
|
2363
2363
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-listA2PSMS) in API Explorer.
|
|
2364
2364
|
|
|
@@ -2382,7 +2382,7 @@ await rc.revoke();
|
|
|
2382
2382
|
|
|
2383
2383
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2384
2384
|
- Parameter `accountId` is optional with default value `~`
|
|
2385
|
-
- `result` is of type [MessageDetailsResponse](./
|
|
2385
|
+
- `result` is of type [MessageDetailsResponse](./definitions/MessageDetailsResponse.ts)
|
|
2386
2386
|
|
|
2387
2387
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-readA2PSMS) in API Explorer.
|
|
2388
2388
|
|
|
@@ -2406,8 +2406,8 @@ await rc.revoke();
|
|
|
2406
2406
|
|
|
2407
2407
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2408
2408
|
- Parameter `accountId` is optional with default value `~`
|
|
2409
|
-
- `readA2PSMSOptOutsParameters` is of type [ReadA2PSMSOptOutsParameters](./
|
|
2410
|
-
- `result` is of type [OptOutListResponse](./
|
|
2409
|
+
- `readA2PSMSOptOutsParameters` is of type [ReadA2PSMSOptOutsParameters](./definitions/ReadA2PSMSOptOutsParameters.ts)
|
|
2410
|
+
- `result` is of type [OptOutListResponse](./definitions/OptOutListResponse.ts)
|
|
2411
2411
|
|
|
2412
2412
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-readA2PSMSOptOuts) in API Explorer.
|
|
2413
2413
|
|
|
@@ -2431,8 +2431,8 @@ await rc.revoke();
|
|
|
2431
2431
|
|
|
2432
2432
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2433
2433
|
- Parameter `accountId` is optional with default value `~`
|
|
2434
|
-
- `aggregateA2PSMSStatusesParameters` is of type [AggregateA2PSMSStatusesParameters](./
|
|
2435
|
-
- `result` is of type [MessageStatusesResponse](./
|
|
2434
|
+
- `aggregateA2PSMSStatusesParameters` is of type [AggregateA2PSMSStatusesParameters](./definitions/AggregateA2PSMSStatusesParameters.ts)
|
|
2435
|
+
- `result` is of type [MessageStatusesResponse](./definitions/MessageStatusesResponse.ts)
|
|
2436
2436
|
|
|
2437
2437
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-aggregateA2PSMSStatuses) in API Explorer.
|
|
2438
2438
|
|
|
@@ -2456,8 +2456,8 @@ await rc.revoke();
|
|
|
2456
2456
|
|
|
2457
2457
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2458
2458
|
- Parameter `accountId` is optional with default value `~`
|
|
2459
|
-
- `listCompanyActiveCallsParameters` is of type [ListCompanyActiveCallsParameters](./
|
|
2460
|
-
- `result` is of type [CompanyActiveCallsResponse](./
|
|
2459
|
+
- `listCompanyActiveCallsParameters` is of type [ListCompanyActiveCallsParameters](./definitions/ListCompanyActiveCallsParameters.ts)
|
|
2460
|
+
- `result` is of type [CompanyActiveCallsResponse](./definitions/CompanyActiveCallsResponse.ts)
|
|
2461
2461
|
|
|
2462
2462
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-listCompanyActiveCalls) in API Explorer.
|
|
2463
2463
|
|
|
@@ -2481,7 +2481,7 @@ await rc.revoke();
|
|
|
2481
2481
|
|
|
2482
2482
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2483
2483
|
- Parameter `accountId` is optional with default value `~`
|
|
2484
|
-
- `result` is of type [CompanyAnsweringRuleList](./
|
|
2484
|
+
- `result` is of type [CompanyAnsweringRuleList](./definitions/CompanyAnsweringRuleList.ts)
|
|
2485
2485
|
|
|
2486
2486
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-listCompanyAnsweringRules) in API Explorer.
|
|
2487
2487
|
|
|
@@ -2505,8 +2505,8 @@ await rc.revoke();
|
|
|
2505
2505
|
|
|
2506
2506
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2507
2507
|
- Parameter `accountId` is optional with default value `~`
|
|
2508
|
-
- `companyAnsweringRuleRequest` is of type [CompanyAnsweringRuleRequest](./
|
|
2509
|
-
- `result` is of type [CompanyAnsweringRuleInfo](./
|
|
2508
|
+
- `companyAnsweringRuleRequest` is of type [CompanyAnsweringRuleRequest](./definitions/CompanyAnsweringRuleRequest.ts)
|
|
2509
|
+
- `result` is of type [CompanyAnsweringRuleInfo](./definitions/CompanyAnsweringRuleInfo.ts)
|
|
2510
2510
|
|
|
2511
2511
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-createCompanyAnsweringRule) in API Explorer.
|
|
2512
2512
|
|
|
@@ -2530,7 +2530,7 @@ await rc.revoke();
|
|
|
2530
2530
|
|
|
2531
2531
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2532
2532
|
- Parameter `accountId` is optional with default value `~`
|
|
2533
|
-
- `result` is of type [CompanyAnsweringRuleInfo](./
|
|
2533
|
+
- `result` is of type [CompanyAnsweringRuleInfo](./definitions/CompanyAnsweringRuleInfo.ts)
|
|
2534
2534
|
|
|
2535
2535
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-readCompanyAnsweringRule) in API Explorer.
|
|
2536
2536
|
|
|
@@ -2554,8 +2554,8 @@ await rc.revoke();
|
|
|
2554
2554
|
|
|
2555
2555
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2556
2556
|
- Parameter `accountId` is optional with default value `~`
|
|
2557
|
-
- `companyAnsweringRuleUpdate` is of type [CompanyAnsweringRuleUpdate](./
|
|
2558
|
-
- `result` is of type [CompanyAnsweringRuleInfo](./
|
|
2557
|
+
- `companyAnsweringRuleUpdate` is of type [CompanyAnsweringRuleUpdate](./definitions/CompanyAnsweringRuleUpdate.ts)
|
|
2558
|
+
- `result` is of type [CompanyAnsweringRuleInfo](./definitions/CompanyAnsweringRuleInfo.ts)
|
|
2559
2559
|
|
|
2560
2560
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-updateCompanyAnsweringRule) in API Explorer.
|
|
2561
2561
|
|
|
@@ -2603,8 +2603,8 @@ await rc.revoke();
|
|
|
2603
2603
|
|
|
2604
2604
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2605
2605
|
- Parameter `accountId` is optional with default value `~`
|
|
2606
|
-
- `listAssignedRolesParameters` is of type [ListAssignedRolesParameters](./
|
|
2607
|
-
- `result` is of type [ExtensionWithRolesCollectionResource](./
|
|
2606
|
+
- `listAssignedRolesParameters` is of type [ListAssignedRolesParameters](./definitions/ListAssignedRolesParameters.ts)
|
|
2607
|
+
- `result` is of type [ExtensionWithRolesCollectionResource](./definitions/ExtensionWithRolesCollectionResource.ts)
|
|
2608
2608
|
|
|
2609
2609
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-listAssignedRoles) in API Explorer.
|
|
2610
2610
|
|
|
@@ -2628,7 +2628,7 @@ await rc.revoke();
|
|
|
2628
2628
|
|
|
2629
2629
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2630
2630
|
- Parameter `accountId` is optional with default value `~`
|
|
2631
|
-
- `result` is of type [AccountBusinessAddressResource](./
|
|
2631
|
+
- `result` is of type [AccountBusinessAddressResource](./definitions/AccountBusinessAddressResource.ts)
|
|
2632
2632
|
|
|
2633
2633
|
[Try it out](https://developer.ringcentral.com/api-reference#Company-readAccountBusinessAddress) in API Explorer.
|
|
2634
2634
|
|
|
@@ -2652,8 +2652,8 @@ await rc.revoke();
|
|
|
2652
2652
|
|
|
2653
2653
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2654
2654
|
- Parameter `accountId` is optional with default value `~`
|
|
2655
|
-
- `modifyAccountBusinessAddressRequest` is of type [ModifyAccountBusinessAddressRequest](./
|
|
2656
|
-
- `result` is of type [AccountBusinessAddressResource](./
|
|
2655
|
+
- `modifyAccountBusinessAddressRequest` is of type [ModifyAccountBusinessAddressRequest](./definitions/ModifyAccountBusinessAddressRequest.ts)
|
|
2656
|
+
- `result` is of type [AccountBusinessAddressResource](./definitions/AccountBusinessAddressResource.ts)
|
|
2657
2657
|
|
|
2658
2658
|
[Try it out](https://developer.ringcentral.com/api-reference#Company-updateAccountBusinessAddress) in API Explorer.
|
|
2659
2659
|
|
|
@@ -2677,7 +2677,7 @@ await rc.revoke();
|
|
|
2677
2677
|
|
|
2678
2678
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2679
2679
|
- Parameter `accountId` is optional with default value `~`
|
|
2680
|
-
- `result` is of type [CompanyBusinessHours](./
|
|
2680
|
+
- `result` is of type [CompanyBusinessHours](./definitions/CompanyBusinessHours.ts)
|
|
2681
2681
|
|
|
2682
2682
|
[Try it out](https://developer.ringcentral.com/api-reference#Business-Hours-readCompanyBusinessHours) in API Explorer.
|
|
2683
2683
|
|
|
@@ -2701,8 +2701,8 @@ await rc.revoke();
|
|
|
2701
2701
|
|
|
2702
2702
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2703
2703
|
- Parameter `accountId` is optional with default value `~`
|
|
2704
|
-
- `companyBusinessHoursUpdateRequest` is of type [CompanyBusinessHoursUpdateRequest](./
|
|
2705
|
-
- `result` is of type [CompanyBusinessHours](./
|
|
2704
|
+
- `companyBusinessHoursUpdateRequest` is of type [CompanyBusinessHoursUpdateRequest](./definitions/CompanyBusinessHoursUpdateRequest.ts)
|
|
2705
|
+
- `result` is of type [CompanyBusinessHours](./definitions/CompanyBusinessHours.ts)
|
|
2706
2706
|
|
|
2707
2707
|
[Try it out](https://developer.ringcentral.com/api-reference#Business-Hours-updateCompanyBusinessHours) in API Explorer.
|
|
2708
2708
|
|
|
@@ -2726,8 +2726,8 @@ await rc.revoke();
|
|
|
2726
2726
|
|
|
2727
2727
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2728
2728
|
- Parameter `accountId` is optional with default value `~`
|
|
2729
|
-
- `syncAccountCallLogParameters` is of type [SyncAccountCallLogParameters](./
|
|
2730
|
-
- `result` is of type [AccountCallLogSyncResponse](./
|
|
2729
|
+
- `syncAccountCallLogParameters` is of type [SyncAccountCallLogParameters](./definitions/SyncAccountCallLogParameters.ts)
|
|
2730
|
+
- `result` is of type [AccountCallLogSyncResponse](./definitions/AccountCallLogSyncResponse.ts)
|
|
2731
2731
|
|
|
2732
2732
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-syncAccountCallLog) in API Explorer.
|
|
2733
2733
|
|
|
@@ -2751,8 +2751,8 @@ await rc.revoke();
|
|
|
2751
2751
|
|
|
2752
2752
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2753
2753
|
- Parameter `accountId` is optional with default value `~`
|
|
2754
|
-
- `listCallQueuesParameters` is of type [ListCallQueuesParameters](./
|
|
2755
|
-
- `result` is of type [CallQueues](./
|
|
2754
|
+
- `listCallQueuesParameters` is of type [ListCallQueuesParameters](./definitions/ListCallQueuesParameters.ts)
|
|
2755
|
+
- `result` is of type [CallQueues](./definitions/CallQueues.ts)
|
|
2756
2756
|
|
|
2757
2757
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-listCallQueues) in API Explorer.
|
|
2758
2758
|
|
|
@@ -2776,7 +2776,7 @@ await rc.revoke();
|
|
|
2776
2776
|
|
|
2777
2777
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2778
2778
|
- Parameter `accountId` is optional with default value `~`
|
|
2779
|
-
- `result` is of type [CallQueueDetails](./
|
|
2779
|
+
- `result` is of type [CallQueueDetails](./definitions/CallQueueDetails.ts)
|
|
2780
2780
|
|
|
2781
2781
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-readCallQueueInfo) in API Explorer.
|
|
2782
2782
|
|
|
@@ -2800,8 +2800,8 @@ await rc.revoke();
|
|
|
2800
2800
|
|
|
2801
2801
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2802
2802
|
- Parameter `accountId` is optional with default value `~`
|
|
2803
|
-
- `callQueueUpdateDetails` is of type [CallQueueUpdateDetails](./
|
|
2804
|
-
- `result` is of type [CallQueueDetails](./
|
|
2803
|
+
- `callQueueUpdateDetails` is of type [CallQueueUpdateDetails](./definitions/CallQueueUpdateDetails.ts)
|
|
2804
|
+
- `result` is of type [CallQueueDetails](./definitions/CallQueueDetails.ts)
|
|
2805
2805
|
|
|
2806
2806
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-updateCallQueueInfo) in API Explorer.
|
|
2807
2807
|
|
|
@@ -2825,7 +2825,7 @@ await rc.revoke();
|
|
|
2825
2825
|
|
|
2826
2826
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2827
2827
|
- Parameter `accountId` is optional with default value `~`
|
|
2828
|
-
- `result` is of type [CallRecordingSettingsResource](./
|
|
2828
|
+
- `result` is of type [CallRecordingSettingsResource](./definitions/CallRecordingSettingsResource.ts)
|
|
2829
2829
|
|
|
2830
2830
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Recording-Settings-readCallRecordingSettings) in API Explorer.
|
|
2831
2831
|
|
|
@@ -2849,8 +2849,8 @@ await rc.revoke();
|
|
|
2849
2849
|
|
|
2850
2850
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2851
2851
|
- Parameter `accountId` is optional with default value `~`
|
|
2852
|
-
- `callRecordingSettingsResource` is of type [CallRecordingSettingsResource](./
|
|
2853
|
-
- `result` is of type [CallRecordingSettingsResource](./
|
|
2852
|
+
- `callRecordingSettingsResource` is of type [CallRecordingSettingsResource](./definitions/CallRecordingSettingsResource.ts)
|
|
2853
|
+
- `result` is of type [CallRecordingSettingsResource](./definitions/CallRecordingSettingsResource.ts)
|
|
2854
2854
|
|
|
2855
2855
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Recording-Settings-updateCallRecordingSettings) in API Explorer.
|
|
2856
2856
|
|
|
@@ -2874,7 +2874,7 @@ await rc.revoke();
|
|
|
2874
2874
|
|
|
2875
2875
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2876
2876
|
- Parameter `accountId` is optional with default value `~`
|
|
2877
|
-
- `result` is of type [CustomFieldsResource](./
|
|
2877
|
+
- `result` is of type [CustomFieldsResource](./definitions/CustomFieldsResource.ts)
|
|
2878
2878
|
|
|
2879
2879
|
[Try it out](https://developer.ringcentral.com/api-reference#Custom-Fields-listCustomFields) in API Explorer.
|
|
2880
2880
|
|
|
@@ -2898,8 +2898,8 @@ await rc.revoke();
|
|
|
2898
2898
|
|
|
2899
2899
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2900
2900
|
- Parameter `accountId` is optional with default value `~`
|
|
2901
|
-
- `customFieldCreateRequest` is of type [CustomFieldCreateRequest](./
|
|
2902
|
-
- `result` is of type [CustomFieldResource](./
|
|
2901
|
+
- `customFieldCreateRequest` is of type [CustomFieldCreateRequest](./definitions/CustomFieldCreateRequest.ts)
|
|
2902
|
+
- `result` is of type [CustomFieldResource](./definitions/CustomFieldResource.ts)
|
|
2903
2903
|
|
|
2904
2904
|
[Try it out](https://developer.ringcentral.com/api-reference#Custom-Fields-createCustomField) in API Explorer.
|
|
2905
2905
|
|
|
@@ -2923,8 +2923,8 @@ await rc.revoke();
|
|
|
2923
2923
|
|
|
2924
2924
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2925
2925
|
- Parameter `accountId` is optional with default value `~`
|
|
2926
|
-
- `customFieldUpdateRequest` is of type [CustomFieldUpdateRequest](./
|
|
2927
|
-
- `result` is of type [CustomFieldResource](./
|
|
2926
|
+
- `customFieldUpdateRequest` is of type [CustomFieldUpdateRequest](./definitions/CustomFieldUpdateRequest.ts)
|
|
2927
|
+
- `result` is of type [CustomFieldResource](./definitions/CustomFieldResource.ts)
|
|
2928
2928
|
|
|
2929
2929
|
[Try it out](https://developer.ringcentral.com/api-reference#Custom-Fields-updateCustomField) in API Explorer.
|
|
2930
2930
|
|
|
@@ -2972,7 +2972,7 @@ await rc.revoke();
|
|
|
2972
2972
|
|
|
2973
2973
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2974
2974
|
- Parameter `accountId` is optional with default value `~`
|
|
2975
|
-
- `result` is of type [SipInfoResource](./
|
|
2975
|
+
- `result` is of type [SipInfoResource](./definitions/SipInfoResource.ts)
|
|
2976
2976
|
|
|
2977
2977
|
[Try it out](https://developer.ringcentral.com/api-reference#Devices-readDeviceSIPInfo) in API Explorer.
|
|
2978
2978
|
|
|
@@ -2996,8 +2996,8 @@ await rc.revoke();
|
|
|
2996
2996
|
|
|
2997
2997
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
2998
2998
|
- Parameter `accountId` is optional with default value `~`
|
|
2999
|
-
- `listDirectoryEntriesParameters` is of type [ListDirectoryEntriesParameters](./
|
|
3000
|
-
- `result` is of type [DirectoryResource](./
|
|
2999
|
+
- `listDirectoryEntriesParameters` is of type [ListDirectoryEntriesParameters](./definitions/ListDirectoryEntriesParameters.ts)
|
|
3000
|
+
- `result` is of type [DirectoryResource](./definitions/DirectoryResource.ts)
|
|
3001
3001
|
|
|
3002
3002
|
[Try it out](https://developer.ringcentral.com/api-reference#Internal-Contacts-listDirectoryEntries) in API Explorer.
|
|
3003
3003
|
|
|
@@ -3021,7 +3021,7 @@ await rc.revoke();
|
|
|
3021
3021
|
|
|
3022
3022
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3023
3023
|
- Parameter `accountId` is optional with default value `~`
|
|
3024
|
-
- `result` is of type [ContactResource](./
|
|
3024
|
+
- `result` is of type [ContactResource](./definitions/ContactResource.ts)
|
|
3025
3025
|
|
|
3026
3026
|
[Try it out](https://developer.ringcentral.com/api-reference#Internal-Contacts-readDirectoryEntry) in API Explorer.
|
|
3027
3027
|
|
|
@@ -3046,8 +3046,8 @@ await rc.revoke();
|
|
|
3046
3046
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3047
3047
|
- Parameter `accountId` is optional with default value `~`
|
|
3048
3048
|
- Parameter `extensionId` is optional with default value `~`
|
|
3049
|
-
- `readUserCallLogParameters` is of type [ReadUserCallLogParameters](./
|
|
3050
|
-
- `result` is of type [UserCallLogResponse](./
|
|
3049
|
+
- `readUserCallLogParameters` is of type [ReadUserCallLogParameters](./definitions/ReadUserCallLogParameters.ts)
|
|
3050
|
+
- `result` is of type [UserCallLogResponse](./definitions/UserCallLogResponse.ts)
|
|
3051
3051
|
|
|
3052
3052
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-readUserCallLog) in API Explorer.
|
|
3053
3053
|
|
|
@@ -3072,7 +3072,7 @@ await rc.revoke();
|
|
|
3072
3072
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3073
3073
|
- Parameter `accountId` is optional with default value `~`
|
|
3074
3074
|
- Parameter `extensionId` is optional with default value `~`
|
|
3075
|
-
- `deleteUserCallLogParameters` is of type [DeleteUserCallLogParameters](./
|
|
3075
|
+
- `deleteUserCallLogParameters` is of type [DeleteUserCallLogParameters](./definitions/DeleteUserCallLogParameters.ts)
|
|
3076
3076
|
- `result` is an empty string
|
|
3077
3077
|
|
|
3078
3078
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-deleteUserCallLog) in API Explorer.
|
|
@@ -3098,7 +3098,7 @@ await rc.revoke();
|
|
|
3098
3098
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3099
3099
|
- Parameter `accountId` is optional with default value `~`
|
|
3100
3100
|
- Parameter `extensionId` is optional with default value `~`
|
|
3101
|
-
- `result` is of type [UserCallLogRecord](./
|
|
3101
|
+
- `result` is of type [UserCallLogRecord](./definitions/UserCallLogRecord.ts)
|
|
3102
3102
|
|
|
3103
3103
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-readUserCallRecord) in API Explorer.
|
|
3104
3104
|
|
|
@@ -3123,8 +3123,8 @@ await rc.revoke();
|
|
|
3123
3123
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3124
3124
|
- Parameter `accountId` is optional with default value `~`
|
|
3125
3125
|
- Parameter `extensionId` is optional with default value `~`
|
|
3126
|
-
- `listExtensionDevicesParameters` is of type [ListExtensionDevicesParameters](./
|
|
3127
|
-
- `result` is of type [GetExtensionDevicesResponse](./
|
|
3126
|
+
- `listExtensionDevicesParameters` is of type [ListExtensionDevicesParameters](./definitions/ListExtensionDevicesParameters.ts)
|
|
3127
|
+
- `result` is of type [GetExtensionDevicesResponse](./definitions/GetExtensionDevicesResponse.ts)
|
|
3128
3128
|
|
|
3129
3129
|
[Try it out](https://developer.ringcentral.com/api-reference#Devices-listExtensionDevices) in API Explorer.
|
|
3130
3130
|
|
|
@@ -3149,8 +3149,8 @@ await rc.revoke();
|
|
|
3149
3149
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3150
3150
|
- Parameter `accountId` is optional with default value `~`
|
|
3151
3151
|
- Parameter `extensionId` is optional with default value `~`
|
|
3152
|
-
- `createFaxMessageRequest` is of type [CreateFaxMessageRequest](./
|
|
3153
|
-
- `result` is of type [FaxResponse](./
|
|
3152
|
+
- `createFaxMessageRequest` is of type [CreateFaxMessageRequest](./definitions/CreateFaxMessageRequest.ts)
|
|
3153
|
+
- `result` is of type [FaxResponse](./definitions/FaxResponse.ts)
|
|
3154
3154
|
|
|
3155
3155
|
[Try it out](https://developer.ringcentral.com/api-reference#Fax-createFaxMessage) in API Explorer.
|
|
3156
3156
|
|
|
@@ -3175,8 +3175,8 @@ await rc.revoke();
|
|
|
3175
3175
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3176
3176
|
- Parameter `accountId` is optional with default value `~`
|
|
3177
3177
|
- Parameter `extensionId` is optional with default value `~`
|
|
3178
|
-
- `listExtensionGrantsParameters` is of type [ListExtensionGrantsParameters](./
|
|
3179
|
-
- `result` is of type [GetExtensionGrantListResponse](./
|
|
3178
|
+
- `listExtensionGrantsParameters` is of type [ListExtensionGrantsParameters](./definitions/ListExtensionGrantsParameters.ts)
|
|
3179
|
+
- `result` is of type [GetExtensionGrantListResponse](./definitions/GetExtensionGrantListResponse.ts)
|
|
3180
3180
|
|
|
3181
3181
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-listExtensionGrants) in API Explorer.
|
|
3182
3182
|
|
|
@@ -3201,9 +3201,9 @@ await rc.revoke();
|
|
|
3201
3201
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3202
3202
|
- Parameter `accountId` is optional with default value `~`
|
|
3203
3203
|
- Parameter `extensionId` is optional with default value `~`
|
|
3204
|
-
- `createCustomUserGreetingRequest` is of type [CreateCustomUserGreetingRequest](./
|
|
3205
|
-
- `createCustomUserGreetingParameters` is of type [CreateCustomUserGreetingParameters](./
|
|
3206
|
-
- `result` is of type [CustomUserGreetingInfo](./
|
|
3204
|
+
- `createCustomUserGreetingRequest` is of type [CreateCustomUserGreetingRequest](./definitions/CreateCustomUserGreetingRequest.ts)
|
|
3205
|
+
- `createCustomUserGreetingParameters` is of type [CreateCustomUserGreetingParameters](./definitions/CreateCustomUserGreetingParameters.ts)
|
|
3206
|
+
- `result` is of type [CustomUserGreetingInfo](./definitions/CustomUserGreetingInfo.ts)
|
|
3207
3207
|
|
|
3208
3208
|
[Try it out](https://developer.ringcentral.com/api-reference#Greetings-createCustomUserGreeting) in API Explorer.
|
|
3209
3209
|
|
|
@@ -3228,7 +3228,7 @@ await rc.revoke();
|
|
|
3228
3228
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3229
3229
|
- Parameter `accountId` is optional with default value `~`
|
|
3230
3230
|
- Parameter `extensionId` is optional with default value `~`
|
|
3231
|
-
- `result` is of type [CustomUserGreetingInfo](./
|
|
3231
|
+
- `result` is of type [CustomUserGreetingInfo](./definitions/CustomUserGreetingInfo.ts)
|
|
3232
3232
|
|
|
3233
3233
|
[Try it out](https://developer.ringcentral.com/api-reference#Greetings-readCustomGreeting) in API Explorer.
|
|
3234
3234
|
|
|
@@ -3253,7 +3253,7 @@ await rc.revoke();
|
|
|
3253
3253
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3254
3254
|
- Parameter `accountId` is optional with default value `~`
|
|
3255
3255
|
- Parameter `extensionId` is optional with default value `~`
|
|
3256
|
-
- `result` is of type [MeetingsResource](./
|
|
3256
|
+
- `result` is of type [MeetingsResource](./definitions/MeetingsResource.ts)
|
|
3257
3257
|
|
|
3258
3258
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-listMeetings) in API Explorer.
|
|
3259
3259
|
|
|
@@ -3278,8 +3278,8 @@ await rc.revoke();
|
|
|
3278
3278
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3279
3279
|
- Parameter `accountId` is optional with default value `~`
|
|
3280
3280
|
- Parameter `extensionId` is optional with default value `~`
|
|
3281
|
-
- `meetingRequestResource` is of type [MeetingRequestResource](./
|
|
3282
|
-
- `result` is of type [MeetingResponseResource](./
|
|
3281
|
+
- `meetingRequestResource` is of type [MeetingRequestResource](./definitions/MeetingRequestResource.ts)
|
|
3282
|
+
- `result` is of type [MeetingResponseResource](./definitions/MeetingResponseResource.ts)
|
|
3283
3283
|
|
|
3284
3284
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-createMeeting) in API Explorer.
|
|
3285
3285
|
|
|
@@ -3304,7 +3304,7 @@ await rc.revoke();
|
|
|
3304
3304
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3305
3305
|
- Parameter `accountId` is optional with default value `~`
|
|
3306
3306
|
- Parameter `extensionId` is optional with default value `~`
|
|
3307
|
-
- `result` is of type [MeetingResponseResource](./
|
|
3307
|
+
- `result` is of type [MeetingResponseResource](./definitions/MeetingResponseResource.ts)
|
|
3308
3308
|
|
|
3309
3309
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-readMeeting) in API Explorer.
|
|
3310
3310
|
|
|
@@ -3329,8 +3329,8 @@ await rc.revoke();
|
|
|
3329
3329
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3330
3330
|
- Parameter `accountId` is optional with default value `~`
|
|
3331
3331
|
- Parameter `extensionId` is optional with default value `~`
|
|
3332
|
-
- `meetingRequestResource` is of type [MeetingRequestResource](./
|
|
3333
|
-
- `result` is of type [MeetingResponseResource](./
|
|
3332
|
+
- `meetingRequestResource` is of type [MeetingRequestResource](./definitions/MeetingRequestResource.ts)
|
|
3333
|
+
- `result` is of type [MeetingResponseResource](./definitions/MeetingResponseResource.ts)
|
|
3334
3334
|
|
|
3335
3335
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-updateMeeting) in API Explorer.
|
|
3336
3336
|
|
|
@@ -3355,7 +3355,7 @@ await rc.revoke();
|
|
|
3355
3355
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3356
3356
|
- Parameter `accountId` is optional with default value `~`
|
|
3357
3357
|
- Parameter `extensionId` is optional with default value `~`
|
|
3358
|
-
- `deleteMeetingParameters` is of type [DeleteMeetingParameters](./
|
|
3358
|
+
- `deleteMeetingParameters` is of type [DeleteMeetingParameters](./definitions/DeleteMeetingParameters.ts)
|
|
3359
3359
|
- `result` is an empty string
|
|
3360
3360
|
|
|
3361
3361
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-deleteMeeting) in API Explorer.
|
|
@@ -3381,8 +3381,8 @@ await rc.revoke();
|
|
|
3381
3381
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3382
3382
|
- Parameter `accountId` is optional with default value `~`
|
|
3383
3383
|
- Parameter `extensionId` is optional with default value `~`
|
|
3384
|
-
- `meetingRequestResource` is of type [MeetingRequestResource](./
|
|
3385
|
-
- `result` is of type [MeetingResponseResource](./
|
|
3384
|
+
- `meetingRequestResource` is of type [MeetingRequestResource](./definitions/MeetingRequestResource.ts)
|
|
3385
|
+
- `result` is of type [MeetingResponseResource](./definitions/MeetingResponseResource.ts)
|
|
3386
3386
|
|
|
3387
3387
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-patchMeeting) in API Explorer.
|
|
3388
3388
|
|
|
@@ -3407,8 +3407,8 @@ await rc.revoke();
|
|
|
3407
3407
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3408
3408
|
- Parameter `accountId` is optional with default value `~`
|
|
3409
3409
|
- Parameter `extensionId` is optional with default value `~`
|
|
3410
|
-
- `CreateMMSMessage` is of type [CreateMMSMessage](./
|
|
3411
|
-
- `result` is of type [GetSMSMessageInfoResponse](./
|
|
3410
|
+
- `CreateMMSMessage` is of type [CreateMMSMessage](./definitions/CreateMMSMessage.ts)
|
|
3411
|
+
- `result` is of type [GetSMSMessageInfoResponse](./definitions/GetSMSMessageInfoResponse.ts)
|
|
3412
3412
|
|
|
3413
3413
|
[Try it out](https://developer.ringcentral.com/api-reference#SMS-createMMS) in API Explorer.
|
|
3414
3414
|
|
|
@@ -3433,8 +3433,8 @@ await rc.revoke();
|
|
|
3433
3433
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3434
3434
|
- Parameter `accountId` is optional with default value `~`
|
|
3435
3435
|
- Parameter `extensionId` is optional with default value `~`
|
|
3436
|
-
- `makeRingOutRequest` is of type [MakeRingOutRequest](./
|
|
3437
|
-
- `result` is of type [GetRingOutStatusResponse](./
|
|
3436
|
+
- `makeRingOutRequest` is of type [MakeRingOutRequest](./definitions/MakeRingOutRequest.ts)
|
|
3437
|
+
- `result` is of type [GetRingOutStatusResponse](./definitions/GetRingOutStatusResponse.ts)
|
|
3438
3438
|
|
|
3439
3439
|
[Try it out](https://developer.ringcentral.com/api-reference#RingOut-createRingOutCall) in API Explorer.
|
|
3440
3440
|
|
|
@@ -3459,7 +3459,7 @@ await rc.revoke();
|
|
|
3459
3459
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3460
3460
|
- Parameter `accountId` is optional with default value `~`
|
|
3461
3461
|
- Parameter `extensionId` is optional with default value `~`
|
|
3462
|
-
- `result` is of type [GetRingOutStatusResponse](./
|
|
3462
|
+
- `result` is of type [GetRingOutStatusResponse](./definitions/GetRingOutStatusResponse.ts)
|
|
3463
3463
|
|
|
3464
3464
|
[Try it out](https://developer.ringcentral.com/api-reference#RingOut-readRingOutCallStatus) in API Explorer.
|
|
3465
3465
|
|
|
@@ -3509,8 +3509,8 @@ await rc.revoke();
|
|
|
3509
3509
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3510
3510
|
- Parameter `accountId` is optional with default value `~`
|
|
3511
3511
|
- Parameter `extensionId` is optional with default value `~`
|
|
3512
|
-
- `CreateSMSMessage` is of type [CreateSMSMessage](./
|
|
3513
|
-
- `result` is of type [GetSMSMessageInfoResponse](./
|
|
3512
|
+
- `CreateSMSMessage` is of type [CreateSMSMessage](./definitions/CreateSMSMessage.ts)
|
|
3513
|
+
- `result` is of type [GetSMSMessageInfoResponse](./definitions/GetSMSMessageInfoResponse.ts)
|
|
3514
3514
|
|
|
3515
3515
|
[Try it out](https://developer.ringcentral.com/api-reference#SMS-createSMSMessage) in API Explorer.
|
|
3516
3516
|
|
|
@@ -3534,7 +3534,7 @@ await rc.revoke();
|
|
|
3534
3534
|
|
|
3535
3535
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3536
3536
|
- Parameter `accountId` is optional with default value `~`
|
|
3537
|
-
- `result` is of type [ForwardAllCompanyCallsInfo](./
|
|
3537
|
+
- `result` is of type [ForwardAllCompanyCallsInfo](./definitions/ForwardAllCompanyCallsInfo.ts)
|
|
3538
3538
|
|
|
3539
3539
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-getForwardAllCompanyCalls) in API Explorer.
|
|
3540
3540
|
|
|
@@ -3558,8 +3558,8 @@ await rc.revoke();
|
|
|
3558
3558
|
|
|
3559
3559
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3560
3560
|
- Parameter `accountId` is optional with default value `~`
|
|
3561
|
-
- `forwardAllCompanyCallsInfo` is of type [ForwardAllCompanyCallsInfo](./
|
|
3562
|
-
- `result` is of type [ForwardAllCompanyCallsInfo](./
|
|
3561
|
+
- `forwardAllCompanyCallsInfo` is of type [ForwardAllCompanyCallsInfo](./definitions/ForwardAllCompanyCallsInfo.ts)
|
|
3562
|
+
- `result` is of type [ForwardAllCompanyCallsInfo](./definitions/ForwardAllCompanyCallsInfo.ts)
|
|
3563
3563
|
|
|
3564
3564
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-updateForwardAllCompanyCalls) in API Explorer.
|
|
3565
3565
|
|
|
@@ -3583,7 +3583,7 @@ await rc.revoke();
|
|
|
3583
3583
|
|
|
3584
3584
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3585
3585
|
- Parameter `accountId` is optional with default value `~`
|
|
3586
|
-
- `result` is of type [IvrPrompts](./
|
|
3586
|
+
- `result` is of type [IvrPrompts](./definitions/IvrPrompts.ts)
|
|
3587
3587
|
|
|
3588
3588
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-listIvrPrompts) in API Explorer.
|
|
3589
3589
|
|
|
@@ -3607,8 +3607,8 @@ await rc.revoke();
|
|
|
3607
3607
|
|
|
3608
3608
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3609
3609
|
- Parameter `accountId` is optional with default value `~`
|
|
3610
|
-
- `createIVRPromptRequest` is of type [CreateIVRPromptRequest](./
|
|
3611
|
-
- `result` is of type [PromptInfo](./
|
|
3610
|
+
- `createIVRPromptRequest` is of type [CreateIVRPromptRequest](./definitions/CreateIVRPromptRequest.ts)
|
|
3611
|
+
- `result` is of type [PromptInfo](./definitions/PromptInfo.ts)
|
|
3612
3612
|
|
|
3613
3613
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-createIVRPrompt) in API Explorer.
|
|
3614
3614
|
|
|
@@ -3632,7 +3632,7 @@ await rc.revoke();
|
|
|
3632
3632
|
|
|
3633
3633
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3634
3634
|
- Parameter `accountId` is optional with default value `~`
|
|
3635
|
-
- `result` is of type [PromptInfo](./
|
|
3635
|
+
- `result` is of type [PromptInfo](./definitions/PromptInfo.ts)
|
|
3636
3636
|
|
|
3637
3637
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-readIVRPrompt) in API Explorer.
|
|
3638
3638
|
|
|
@@ -3656,8 +3656,8 @@ await rc.revoke();
|
|
|
3656
3656
|
|
|
3657
3657
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3658
3658
|
- Parameter `accountId` is optional with default value `~`
|
|
3659
|
-
- `updateIVRPromptRequest` is of type [UpdateIVRPromptRequest](./
|
|
3660
|
-
- `result` is of type [PromptInfo](./
|
|
3659
|
+
- `updateIVRPromptRequest` is of type [UpdateIVRPromptRequest](./definitions/UpdateIVRPromptRequest.ts)
|
|
3660
|
+
- `result` is of type [PromptInfo](./definitions/PromptInfo.ts)
|
|
3661
3661
|
|
|
3662
3662
|
[Try it out](https://developer.ringcentral.com/api-reference#IVR-updateIVRPrompt) in API Explorer.
|
|
3663
3663
|
|
|
@@ -3705,8 +3705,8 @@ await rc.revoke();
|
|
|
3705
3705
|
|
|
3706
3706
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3707
3707
|
- Parameter `accountId` is optional with default value `~`
|
|
3708
|
-
- `listAccountPhoneNumbersParameters` is of type [ListAccountPhoneNumbersParameters](./
|
|
3709
|
-
- `result` is of type [AccountPhoneNumbers](./
|
|
3708
|
+
- `listAccountPhoneNumbersParameters` is of type [ListAccountPhoneNumbersParameters](./definitions/ListAccountPhoneNumbersParameters.ts)
|
|
3709
|
+
- `result` is of type [AccountPhoneNumbers](./definitions/AccountPhoneNumbers.ts)
|
|
3710
3710
|
|
|
3711
3711
|
[Try it out](https://developer.ringcentral.com/api-reference#Phone-Numbers-listAccountPhoneNumbers) in API Explorer.
|
|
3712
3712
|
|
|
@@ -3730,7 +3730,7 @@ await rc.revoke();
|
|
|
3730
3730
|
|
|
3731
3731
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3732
3732
|
- Parameter `accountId` is optional with default value `~`
|
|
3733
|
-
- `result` is of type [CompanyPhoneNumberInfo](./
|
|
3733
|
+
- `result` is of type [CompanyPhoneNumberInfo](./definitions/CompanyPhoneNumberInfo.ts)
|
|
3734
3734
|
|
|
3735
3735
|
[Try it out](https://developer.ringcentral.com/api-reference#Phone-Numbers-readAccountPhoneNumber) in API Explorer.
|
|
3736
3736
|
|
|
@@ -3754,7 +3754,7 @@ await rc.revoke();
|
|
|
3754
3754
|
|
|
3755
3755
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3756
3756
|
- Parameter `accountId` is optional with default value `~`
|
|
3757
|
-
- `result` is of type [AccountServiceInfo](./
|
|
3757
|
+
- `result` is of type [AccountServiceInfo](./definitions/AccountServiceInfo.ts)
|
|
3758
3758
|
|
|
3759
3759
|
[Try it out](https://developer.ringcentral.com/api-reference#Company-readAccountServiceInfo) in API Explorer.
|
|
3760
3760
|
|
|
@@ -3802,7 +3802,7 @@ await rc.revoke();
|
|
|
3802
3802
|
|
|
3803
3803
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3804
3804
|
- Parameter `accountId` is optional with default value `~`
|
|
3805
|
-
- `defaultUserRoleRequest` is of type [DefaultUserRoleRequest](./
|
|
3805
|
+
- `defaultUserRoleRequest` is of type [DefaultUserRoleRequest](./definitions/DefaultUserRoleRequest.ts)
|
|
3806
3806
|
- `result` is an empty string
|
|
3807
3807
|
|
|
3808
3808
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-updateDefaultUserRole) in API Explorer.
|
|
@@ -3826,8 +3826,8 @@ await rc.revoke();
|
|
|
3826
3826
|
```
|
|
3827
3827
|
|
|
3828
3828
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3829
|
-
- `createSipRegistrationRequest` is of type [CreateSipRegistrationRequest](./
|
|
3830
|
-
- `result` is of type [CreateSipRegistrationResponse](./
|
|
3829
|
+
- `createSipRegistrationRequest` is of type [CreateSipRegistrationRequest](./definitions/CreateSipRegistrationRequest.ts)
|
|
3830
|
+
- `result` is of type [CreateSipRegistrationResponse](./definitions/CreateSipRegistrationResponse.ts)
|
|
3831
3831
|
|
|
3832
3832
|
[Try it out](https://developer.ringcentral.com/api-reference#Device-SIP-Registration-createSIPRegistration) in API Explorer.
|
|
3833
3833
|
|
|
@@ -3850,8 +3850,8 @@ await rc.revoke();
|
|
|
3850
3850
|
```
|
|
3851
3851
|
|
|
3852
3852
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3853
|
-
- `listFaxCoverPagesParameters` is of type [ListFaxCoverPagesParameters](./
|
|
3854
|
-
- `result` is of type [ListFaxCoverPagesResponse](./
|
|
3853
|
+
- `listFaxCoverPagesParameters` is of type [ListFaxCoverPagesParameters](./definitions/ListFaxCoverPagesParameters.ts)
|
|
3854
|
+
- `result` is of type [ListFaxCoverPagesResponse](./definitions/ListFaxCoverPagesResponse.ts)
|
|
3855
3855
|
|
|
3856
3856
|
[Try it out](https://developer.ringcentral.com/api-reference#Fax-listFaxCoverPages) in API Explorer.
|
|
3857
3857
|
|
|
@@ -3874,8 +3874,8 @@ await rc.revoke();
|
|
|
3874
3874
|
```
|
|
3875
3875
|
|
|
3876
3876
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3877
|
-
- `listStandardGreetingsParameters` is of type [ListStandardGreetingsParameters](./
|
|
3878
|
-
- `result` is of type [DictionaryGreetingList](./
|
|
3877
|
+
- `listStandardGreetingsParameters` is of type [ListStandardGreetingsParameters](./definitions/ListStandardGreetingsParameters.ts)
|
|
3878
|
+
- `result` is of type [DictionaryGreetingList](./definitions/DictionaryGreetingList.ts)
|
|
3879
3879
|
|
|
3880
3880
|
[Try it out](https://developer.ringcentral.com/api-reference#Greetings-listStandardGreetings) in API Explorer.
|
|
3881
3881
|
|
|
@@ -3898,7 +3898,7 @@ await rc.revoke();
|
|
|
3898
3898
|
```
|
|
3899
3899
|
|
|
3900
3900
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3901
|
-
- `result` is of type [DictionaryGreetingInfo](./
|
|
3901
|
+
- `result` is of type [DictionaryGreetingInfo](./definitions/DictionaryGreetingInfo.ts)
|
|
3902
3902
|
|
|
3903
3903
|
[Try it out](https://developer.ringcentral.com/api-reference#Greetings-readStandardGreeting) in API Explorer.
|
|
3904
3904
|
|
|
@@ -3921,7 +3921,7 @@ await rc.revoke();
|
|
|
3921
3921
|
```
|
|
3922
3922
|
|
|
3923
3923
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3924
|
-
- `result` is of type [LanguageList](./
|
|
3924
|
+
- `result` is of type [LanguageList](./definitions/LanguageList.ts)
|
|
3925
3925
|
|
|
3926
3926
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-listLanguages) in API Explorer.
|
|
3927
3927
|
|
|
@@ -3944,7 +3944,7 @@ await rc.revoke();
|
|
|
3944
3944
|
```
|
|
3945
3945
|
|
|
3946
3946
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3947
|
-
- `result` is of type [LanguageInfo](./
|
|
3947
|
+
- `result` is of type [LanguageInfo](./definitions/LanguageInfo.ts)
|
|
3948
3948
|
|
|
3949
3949
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-readLanguage) in API Explorer.
|
|
3950
3950
|
|
|
@@ -3967,8 +3967,8 @@ await rc.revoke();
|
|
|
3967
3967
|
```
|
|
3968
3968
|
|
|
3969
3969
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3970
|
-
- `listLocationsParameters` is of type [ListLocationsParameters](./
|
|
3971
|
-
- `result` is of type [GetLocationListResponse](./
|
|
3970
|
+
- `listLocationsParameters` is of type [ListLocationsParameters](./definitions/ListLocationsParameters.ts)
|
|
3971
|
+
- `result` is of type [GetLocationListResponse](./definitions/GetLocationListResponse.ts)
|
|
3972
3972
|
|
|
3973
3973
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-listLocations) in API Explorer.
|
|
3974
3974
|
|
|
@@ -3991,8 +3991,8 @@ await rc.revoke();
|
|
|
3991
3991
|
```
|
|
3992
3992
|
|
|
3993
3993
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
3994
|
-
- `listPermissionsParameters` is of type [ListPermissionsParameters](./
|
|
3995
|
-
- `result` is of type [PermissionCollectionResource](./
|
|
3994
|
+
- `listPermissionsParameters` is of type [ListPermissionsParameters](./definitions/ListPermissionsParameters.ts)
|
|
3995
|
+
- `result` is of type [PermissionCollectionResource](./definitions/PermissionCollectionResource.ts)
|
|
3996
3996
|
|
|
3997
3997
|
[Try it out](https://developer.ringcentral.com/api-reference#Permissions-listPermissions) in API Explorer.
|
|
3998
3998
|
|
|
@@ -4015,7 +4015,7 @@ await rc.revoke();
|
|
|
4015
4015
|
```
|
|
4016
4016
|
|
|
4017
4017
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4018
|
-
- `result` is of type [PermissionResource](./
|
|
4018
|
+
- `result` is of type [PermissionResource](./definitions/PermissionResource.ts)
|
|
4019
4019
|
|
|
4020
4020
|
[Try it out](https://developer.ringcentral.com/api-reference#Permissions-readPermission) in API Explorer.
|
|
4021
4021
|
|
|
@@ -4038,8 +4038,8 @@ await rc.revoke();
|
|
|
4038
4038
|
```
|
|
4039
4039
|
|
|
4040
4040
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4041
|
-
- `listTimezonesParameters` is of type [ListTimezonesParameters](./
|
|
4042
|
-
- `result` is of type [GetTimezoneListResponse](./
|
|
4041
|
+
- `listTimezonesParameters` is of type [ListTimezonesParameters](./definitions/ListTimezonesParameters.ts)
|
|
4042
|
+
- `result` is of type [GetTimezoneListResponse](./definitions/GetTimezoneListResponse.ts)
|
|
4043
4043
|
|
|
4044
4044
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-listTimezones) in API Explorer.
|
|
4045
4045
|
|
|
@@ -4062,8 +4062,8 @@ await rc.revoke();
|
|
|
4062
4062
|
```
|
|
4063
4063
|
|
|
4064
4064
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4065
|
-
- `readTimezoneParameters` is of type [ReadTimezoneParameters](./
|
|
4066
|
-
- `result` is of type [GetTimezoneInfoResponse](./
|
|
4065
|
+
- `readTimezoneParameters` is of type [ReadTimezoneParameters](./definitions/ReadTimezoneParameters.ts)
|
|
4066
|
+
- `result` is of type [GetTimezoneInfoResponse](./definitions/GetTimezoneInfoResponse.ts)
|
|
4067
4067
|
|
|
4068
4068
|
[Try it out](https://developer.ringcentral.com/api-reference#Regional-Settings-readTimezone) in API Explorer.
|
|
4069
4069
|
|
|
@@ -4086,8 +4086,8 @@ await rc.revoke();
|
|
|
4086
4086
|
```
|
|
4087
4087
|
|
|
4088
4088
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4089
|
-
- `listStandardUserRoleParameters` is of type [ListStandardUserRoleParameters](./
|
|
4090
|
-
- `result` is of type [RolesCollectionResource](./
|
|
4089
|
+
- `listStandardUserRoleParameters` is of type [ListStandardUserRoleParameters](./definitions/ListStandardUserRoleParameters.ts)
|
|
4090
|
+
- `result` is of type [RolesCollectionResource](./definitions/RolesCollectionResource.ts)
|
|
4091
4091
|
|
|
4092
4092
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-listStandardUserRole) in API Explorer.
|
|
4093
4093
|
|
|
@@ -4110,7 +4110,7 @@ await rc.revoke();
|
|
|
4110
4110
|
```
|
|
4111
4111
|
|
|
4112
4112
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4113
|
-
- `result` is of type [RoleResource](./
|
|
4113
|
+
- `result` is of type [RoleResource](./definitions/RoleResource.ts)
|
|
4114
4114
|
|
|
4115
4115
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-readStandardUserRole) in API Explorer.
|
|
4116
4116
|
|
|
@@ -4133,9 +4133,9 @@ await rc.revoke();
|
|
|
4133
4133
|
```
|
|
4134
4134
|
|
|
4135
4135
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4136
|
-
- `parsePhoneNumberRequest` is of type [ParsePhoneNumberRequest](./
|
|
4137
|
-
- `parsePhoneNumberParameters` is of type [ParsePhoneNumberParameters](./
|
|
4138
|
-
- `result` is of type [ParsePhoneNumberResponse](./
|
|
4136
|
+
- `parsePhoneNumberRequest` is of type [ParsePhoneNumberRequest](./definitions/ParsePhoneNumberRequest.ts)
|
|
4137
|
+
- `parsePhoneNumberParameters` is of type [ParsePhoneNumberParameters](./definitions/ParsePhoneNumberParameters.ts)
|
|
4138
|
+
- `result` is of type [ParsePhoneNumberResponse](./definitions/ParsePhoneNumberResponse.ts)
|
|
4139
4139
|
|
|
4140
4140
|
[Try it out](https://developer.ringcentral.com/api-reference#Phone-Numbers-parsePhoneNumber) in API Explorer.
|
|
4141
4141
|
|
|
@@ -4157,7 +4157,7 @@ var result = await rc.teamMessaging(version).adaptiveCards(cardId).get();
|
|
|
4157
4157
|
await rc.revoke();
|
|
4158
4158
|
```
|
|
4159
4159
|
|
|
4160
|
-
- `result` is of type [AdaptiveCardInfo](./
|
|
4160
|
+
- `result` is of type [AdaptiveCardInfo](./definitions/AdaptiveCardInfo.ts)
|
|
4161
4161
|
|
|
4162
4162
|
[Try it out](https://developer.ringcentral.com/api-reference#Adaptive-Cards-getGlipAdaptiveCardNew) in API Explorer.
|
|
4163
4163
|
|
|
@@ -4179,8 +4179,8 @@ var result = await rc.teamMessaging(version).adaptiveCards(cardId).put(adaptiveC
|
|
|
4179
4179
|
await rc.revoke();
|
|
4180
4180
|
```
|
|
4181
4181
|
|
|
4182
|
-
- `adaptiveCardRequest` is of type [AdaptiveCardRequest](./
|
|
4183
|
-
- `result` is of type [AdaptiveCardShortInfo](./
|
|
4182
|
+
- `adaptiveCardRequest` is of type [AdaptiveCardRequest](./definitions/AdaptiveCardRequest.ts)
|
|
4183
|
+
- `result` is of type [AdaptiveCardShortInfo](./definitions/AdaptiveCardShortInfo.ts)
|
|
4184
4184
|
|
|
4185
4185
|
[Try it out](https://developer.ringcentral.com/api-reference#Adaptive-Cards-updateGlipAdaptiveCardNew) in API Explorer.
|
|
4186
4186
|
|
|
@@ -4290,8 +4290,8 @@ var result = await rc.teamMessaging(version).conversations().list(listGlipConver
|
|
|
4290
4290
|
await rc.revoke();
|
|
4291
4291
|
```
|
|
4292
4292
|
|
|
4293
|
-
- `listGlipConversationsNewParameters` is of type [ListGlipConversationsNewParameters](./
|
|
4294
|
-
- `result` is of type [TMConversationList](./
|
|
4293
|
+
- `listGlipConversationsNewParameters` is of type [ListGlipConversationsNewParameters](./definitions/ListGlipConversationsNewParameters.ts)
|
|
4294
|
+
- `result` is of type [TMConversationList](./definitions/TMConversationList.ts)
|
|
4295
4295
|
|
|
4296
4296
|
[Try it out](https://developer.ringcentral.com/api-reference#Conversations-listGlipConversationsNew) in API Explorer.
|
|
4297
4297
|
|
|
@@ -4313,8 +4313,8 @@ var result = await rc.teamMessaging(version).conversations().post(createConversa
|
|
|
4313
4313
|
await rc.revoke();
|
|
4314
4314
|
```
|
|
4315
4315
|
|
|
4316
|
-
- `createConversationRequest` is of type [CreateConversationRequest](./
|
|
4317
|
-
- `result` is of type [TMConversationInfo](./
|
|
4316
|
+
- `createConversationRequest` is of type [CreateConversationRequest](./definitions/CreateConversationRequest.ts)
|
|
4317
|
+
- `result` is of type [TMConversationInfo](./definitions/TMConversationInfo.ts)
|
|
4318
4318
|
|
|
4319
4319
|
[Try it out](https://developer.ringcentral.com/api-reference#Conversations-createGlipConversationNew) in API Explorer.
|
|
4320
4320
|
|
|
@@ -4336,7 +4336,7 @@ var result = await rc.teamMessaging(version).conversations(chatId).get();
|
|
|
4336
4336
|
await rc.revoke();
|
|
4337
4337
|
```
|
|
4338
4338
|
|
|
4339
|
-
- `result` is of type [TMConversationInfo](./
|
|
4339
|
+
- `result` is of type [TMConversationInfo](./definitions/TMConversationInfo.ts)
|
|
4340
4340
|
|
|
4341
4341
|
[Try it out](https://developer.ringcentral.com/api-reference#Conversations-readGlipConversationNew) in API Explorer.
|
|
4342
4342
|
|
|
@@ -4358,7 +4358,7 @@ var result = await rc.teamMessaging(version).groups(groupId).events().get();
|
|
|
4358
4358
|
await rc.revoke();
|
|
4359
4359
|
```
|
|
4360
4360
|
|
|
4361
|
-
- `result` is of type [TMEventInfo](./
|
|
4361
|
+
- `result` is of type [TMEventInfo](./definitions/TMEventInfo.ts)
|
|
4362
4362
|
|
|
4363
4363
|
[Try it out](https://developer.ringcentral.com/api-reference#Calendar-Events-listGroupEventsNew) in API Explorer.
|
|
4364
4364
|
|
|
@@ -4380,8 +4380,8 @@ var result = await rc.teamMessaging(version).groups(groupId).events().post(tMCre
|
|
|
4380
4380
|
await rc.revoke();
|
|
4381
4381
|
```
|
|
4382
4382
|
|
|
4383
|
-
- `tMCreateEventRequest` is of type [TMCreateEventRequest](./
|
|
4384
|
-
- `result` is of type [TMEventInfo](./
|
|
4383
|
+
- `tMCreateEventRequest` is of type [TMCreateEventRequest](./definitions/TMCreateEventRequest.ts)
|
|
4384
|
+
- `result` is of type [TMEventInfo](./definitions/TMEventInfo.ts)
|
|
4385
4385
|
|
|
4386
4386
|
[Try it out](https://developer.ringcentral.com/api-reference#Calendar-Events-createEventByGroupIdNew) in API Explorer.
|
|
4387
4387
|
|
|
@@ -4403,7 +4403,7 @@ var result = await rc.teamMessaging(version).groups(groupId).webhooks().get();
|
|
|
4403
4403
|
await rc.revoke();
|
|
4404
4404
|
```
|
|
4405
4405
|
|
|
4406
|
-
- `result` is of type [TMWebhookList](./
|
|
4406
|
+
- `result` is of type [TMWebhookList](./definitions/TMWebhookList.ts)
|
|
4407
4407
|
|
|
4408
4408
|
[Try it out](https://developer.ringcentral.com/api-reference#Incoming-Webhooks-listGlipGroupWebhooksNew) in API Explorer.
|
|
4409
4409
|
|
|
@@ -4425,7 +4425,7 @@ var result = await rc.teamMessaging(version).groups(groupId).webhooks().post();
|
|
|
4425
4425
|
await rc.revoke();
|
|
4426
4426
|
```
|
|
4427
4427
|
|
|
4428
|
-
- `result` is of type [TMWebhookInfo](./
|
|
4428
|
+
- `result` is of type [TMWebhookInfo](./definitions/TMWebhookInfo.ts)
|
|
4429
4429
|
|
|
4430
4430
|
[Try it out](https://developer.ringcentral.com/api-reference#Incoming-Webhooks-createGlipGroupWebhookNew) in API Explorer.
|
|
4431
4431
|
|
|
@@ -4447,7 +4447,7 @@ var result = await rc.teamMessaging(version).notes(noteId).publish().post();
|
|
|
4447
4447
|
await rc.revoke();
|
|
4448
4448
|
```
|
|
4449
4449
|
|
|
4450
|
-
- `result` is of type [TMNoteInfo](./
|
|
4450
|
+
- `result` is of type [TMNoteInfo](./definitions/TMNoteInfo.ts)
|
|
4451
4451
|
|
|
4452
4452
|
[Try it out](https://developer.ringcentral.com/api-reference#Notes-publishNoteNew) in API Explorer.
|
|
4453
4453
|
|
|
@@ -4491,8 +4491,8 @@ var result = await rc.teamMessaging(version).recent().chats().get(listRecentChat
|
|
|
4491
4491
|
await rc.revoke();
|
|
4492
4492
|
```
|
|
4493
4493
|
|
|
4494
|
-
- `listRecentChatsNewParameters` is of type [ListRecentChatsNewParameters](./
|
|
4495
|
-
- `result` is of type [TMChatListWithoutNavigation](./
|
|
4494
|
+
- `listRecentChatsNewParameters` is of type [ListRecentChatsNewParameters](./definitions/ListRecentChatsNewParameters.ts)
|
|
4495
|
+
- `result` is of type [TMChatListWithoutNavigation](./definitions/TMChatListWithoutNavigation.ts)
|
|
4496
4496
|
|
|
4497
4497
|
[Try it out](https://developer.ringcentral.com/api-reference#Chats-listRecentChatsNew) in API Explorer.
|
|
4498
4498
|
|
|
@@ -4514,7 +4514,7 @@ var result = await rc.teamMessaging(version).tasks(taskId).complete().post(tMCom
|
|
|
4514
4514
|
await rc.revoke();
|
|
4515
4515
|
```
|
|
4516
4516
|
|
|
4517
|
-
- `tMCompleteTaskRequest` is of type [TMCompleteTaskRequest](./
|
|
4517
|
+
- `tMCompleteTaskRequest` is of type [TMCompleteTaskRequest](./definitions/TMCompleteTaskRequest.ts)
|
|
4518
4518
|
- `result` is an empty string
|
|
4519
4519
|
|
|
4520
4520
|
[Try it out](https://developer.ringcentral.com/api-reference#Tasks-completeTaskNew) in API Explorer.
|
|
@@ -4581,7 +4581,7 @@ var result = await rc.teamMessaging(version).teams(chatId).remove().post(tMRemov
|
|
|
4581
4581
|
await rc.revoke();
|
|
4582
4582
|
```
|
|
4583
4583
|
|
|
4584
|
-
- `tMRemoveTeamMembersRequest` is of type [TMRemoveTeamMembersRequest](./
|
|
4584
|
+
- `tMRemoveTeamMembersRequest` is of type [TMRemoveTeamMembersRequest](./definitions/TMRemoveTeamMembersRequest.ts)
|
|
4585
4585
|
- `result` is an empty string
|
|
4586
4586
|
|
|
4587
4587
|
[Try it out](https://developer.ringcentral.com/api-reference#Teams-removeGlipTeamMembersNew) in API Explorer.
|
|
@@ -4670,9 +4670,9 @@ var result = await rc.analytics().calls(version).accounts(accountId).aggregation
|
|
|
4670
4670
|
await rc.revoke();
|
|
4671
4671
|
```
|
|
4672
4672
|
|
|
4673
|
-
- `aggregationRequest` is of type [AggregationRequest](./
|
|
4674
|
-
- `analyticsCallsAggregationFetchParameters` is of type [AnalyticsCallsAggregationFetchParameters](./
|
|
4675
|
-
- `result` is of type [AggregationResponse](./
|
|
4673
|
+
- `aggregationRequest` is of type [AggregationRequest](./definitions/AggregationRequest.ts)
|
|
4674
|
+
- `analyticsCallsAggregationFetchParameters` is of type [AnalyticsCallsAggregationFetchParameters](./definitions/AnalyticsCallsAggregationFetchParameters.ts)
|
|
4675
|
+
- `result` is of type [AggregationResponse](./definitions/AggregationResponse.ts)
|
|
4676
4676
|
|
|
4677
4677
|
[Try it out](https://developer.ringcentral.com/api-reference#Line-Of-Business-Analytics-analyticsCallsAggregationFetch) in API Explorer.
|
|
4678
4678
|
|
|
@@ -4694,9 +4694,9 @@ var result = await rc.analytics().calls(version).accounts(accountId).timeline().
|
|
|
4694
4694
|
await rc.revoke();
|
|
4695
4695
|
```
|
|
4696
4696
|
|
|
4697
|
-
- `timelineRequest` is of type [TimelineRequest](./
|
|
4698
|
-
- `analyticsCallsTimelineFetchParameters` is of type [AnalyticsCallsTimelineFetchParameters](./
|
|
4699
|
-
- `result` is of type [TimelineResponse](./
|
|
4697
|
+
- `timelineRequest` is of type [TimelineRequest](./definitions/TimelineRequest.ts)
|
|
4698
|
+
- `analyticsCallsTimelineFetchParameters` is of type [AnalyticsCallsTimelineFetchParameters](./definitions/AnalyticsCallsTimelineFetchParameters.ts)
|
|
4699
|
+
- `result` is of type [TimelineResponse](./definitions/TimelineResponse.ts)
|
|
4700
4700
|
|
|
4701
4701
|
[Try it out](https://developer.ringcentral.com/api-reference#Line-Of-Business-Analytics-analyticsCallsTimelineFetch) in API Explorer.
|
|
4702
4702
|
|
|
@@ -4720,8 +4720,8 @@ await rc.revoke();
|
|
|
4720
4720
|
|
|
4721
4721
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4722
4722
|
- Parameter `accountId` is optional with default value `~`
|
|
4723
|
-
- `addressBookBulkUploadRequest` is of type [AddressBookBulkUploadRequest](./
|
|
4724
|
-
- `result` is of type [AddressBookBulkUploadResponse](./
|
|
4723
|
+
- `addressBookBulkUploadRequest` is of type [AddressBookBulkUploadRequest](./definitions/AddressBookBulkUploadRequest.ts)
|
|
4724
|
+
- `result` is of type [AddressBookBulkUploadResponse](./definitions/AddressBookBulkUploadResponse.ts)
|
|
4725
4725
|
|
|
4726
4726
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-addressBookBulkUpload) in API Explorer.
|
|
4727
4727
|
|
|
@@ -4745,8 +4745,8 @@ await rc.revoke();
|
|
|
4745
4745
|
|
|
4746
4746
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4747
4747
|
- Parameter `accountId` is optional with default value `~`
|
|
4748
|
-
- `accountHistorySearchPublicRequest` is of type [AccountHistorySearchPublicRequest](./
|
|
4749
|
-
- `result` is of type [AccountHistorySearchPublicResponse](./
|
|
4748
|
+
- `accountHistorySearchPublicRequest` is of type [AccountHistorySearchPublicRequest](./definitions/AccountHistorySearchPublicRequest.ts)
|
|
4749
|
+
- `result` is of type [AccountHistorySearchPublicResponse](./definitions/AccountHistorySearchPublicResponse.ts)
|
|
4750
4750
|
|
|
4751
4751
|
[Try it out](https://developer.ringcentral.com/api-reference#Audit-Trail-auditTrailSearch) in API Explorer.
|
|
4752
4752
|
|
|
@@ -4770,8 +4770,8 @@ await rc.revoke();
|
|
|
4770
4770
|
|
|
4771
4771
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4772
4772
|
- Parameter `accountId` is optional with default value `~`
|
|
4773
|
-
- `listCallMonitoringGroupsParameters` is of type [ListCallMonitoringGroupsParameters](./
|
|
4774
|
-
- `result` is of type [CallMonitoringGroups](./
|
|
4773
|
+
- `listCallMonitoringGroupsParameters` is of type [ListCallMonitoringGroupsParameters](./definitions/ListCallMonitoringGroupsParameters.ts)
|
|
4774
|
+
- `result` is of type [CallMonitoringGroups](./definitions/CallMonitoringGroups.ts)
|
|
4775
4775
|
|
|
4776
4776
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Monitoring-Groups-listCallMonitoringGroups) in API Explorer.
|
|
4777
4777
|
|
|
@@ -4795,8 +4795,8 @@ await rc.revoke();
|
|
|
4795
4795
|
|
|
4796
4796
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4797
4797
|
- Parameter `accountId` is optional with default value `~`
|
|
4798
|
-
- `createCallMonitoringGroupRequest` is of type [CreateCallMonitoringGroupRequest](./
|
|
4799
|
-
- `result` is of type [CallMonitoringGroup](./
|
|
4798
|
+
- `createCallMonitoringGroupRequest` is of type [CreateCallMonitoringGroupRequest](./definitions/CreateCallMonitoringGroupRequest.ts)
|
|
4799
|
+
- `result` is of type [CallMonitoringGroup](./definitions/CallMonitoringGroup.ts)
|
|
4800
4800
|
|
|
4801
4801
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Monitoring-Groups-createCallMonitoringGroup) in API Explorer.
|
|
4802
4802
|
|
|
@@ -4820,8 +4820,8 @@ await rc.revoke();
|
|
|
4820
4820
|
|
|
4821
4821
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4822
4822
|
- Parameter `accountId` is optional with default value `~`
|
|
4823
|
-
- `createCallMonitoringGroupRequest` is of type [CreateCallMonitoringGroupRequest](./
|
|
4824
|
-
- `result` is of type [CallMonitoringGroup](./
|
|
4823
|
+
- `createCallMonitoringGroupRequest` is of type [CreateCallMonitoringGroupRequest](./definitions/CreateCallMonitoringGroupRequest.ts)
|
|
4824
|
+
- `result` is of type [CallMonitoringGroup](./definitions/CallMonitoringGroup.ts)
|
|
4825
4825
|
|
|
4826
4826
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Monitoring-Groups-updateCallMonitoringGroup) in API Explorer.
|
|
4827
4827
|
|
|
@@ -4869,7 +4869,7 @@ await rc.revoke();
|
|
|
4869
4869
|
|
|
4870
4870
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4871
4871
|
- Parameter `accountId` is optional with default value `~`
|
|
4872
|
-
- `callQueueBulkAssignResource` is of type [CallQueueBulkAssignResource](./
|
|
4872
|
+
- `callQueueBulkAssignResource` is of type [CallQueueBulkAssignResource](./definitions/CallQueueBulkAssignResource.ts)
|
|
4873
4873
|
- `result` is an empty string
|
|
4874
4874
|
|
|
4875
4875
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-assignMultipleCallQueueMembers) in API Explorer.
|
|
@@ -4894,8 +4894,8 @@ await rc.revoke();
|
|
|
4894
4894
|
|
|
4895
4895
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4896
4896
|
- Parameter `accountId` is optional with default value `~`
|
|
4897
|
-
- `listCallQueueMembersParameters` is of type [ListCallQueueMembersParameters](./
|
|
4898
|
-
- `result` is of type [CallQueueMembers](./
|
|
4897
|
+
- `listCallQueueMembersParameters` is of type [ListCallQueueMembersParameters](./definitions/ListCallQueueMembersParameters.ts)
|
|
4898
|
+
- `result` is of type [CallQueueMembers](./definitions/CallQueueMembers.ts)
|
|
4899
4899
|
|
|
4900
4900
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-listCallQueueMembers) in API Explorer.
|
|
4901
4901
|
|
|
@@ -4919,7 +4919,7 @@ await rc.revoke();
|
|
|
4919
4919
|
|
|
4920
4920
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4921
4921
|
- Parameter `accountId` is optional with default value `~`
|
|
4922
|
-
- `result` is of type [CallQueuePresence](./
|
|
4922
|
+
- `result` is of type [CallQueuePresence](./definitions/CallQueuePresence.ts)
|
|
4923
4923
|
|
|
4924
4924
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-readCallQueuePresence) in API Explorer.
|
|
4925
4925
|
|
|
@@ -4943,8 +4943,8 @@ await rc.revoke();
|
|
|
4943
4943
|
|
|
4944
4944
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4945
4945
|
- Parameter `accountId` is optional with default value `~`
|
|
4946
|
-
- `callQueueUpdatePresence` is of type [CallQueueUpdatePresence](./
|
|
4947
|
-
- `result` is of type [CallQueuePresence](./
|
|
4946
|
+
- `callQueueUpdatePresence` is of type [CallQueueUpdatePresence](./definitions/CallQueueUpdatePresence.ts)
|
|
4947
|
+
- `result` is of type [CallQueuePresence](./definitions/CallQueuePresence.ts)
|
|
4948
4948
|
|
|
4949
4949
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-updateCallQueuePresence) in API Explorer.
|
|
4950
4950
|
|
|
@@ -4968,7 +4968,7 @@ await rc.revoke();
|
|
|
4968
4968
|
|
|
4969
4969
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4970
4970
|
- Parameter `accountId` is optional with default value `~`
|
|
4971
|
-
- `bulkAccountCallRecordingsResource` is of type [BulkAccountCallRecordingsResource](./
|
|
4971
|
+
- `bulkAccountCallRecordingsResource` is of type [BulkAccountCallRecordingsResource](./definitions/BulkAccountCallRecordingsResource.ts)
|
|
4972
4972
|
- `result` is an empty string
|
|
4973
4973
|
|
|
4974
4974
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Recording-Settings-updateCallRecordingExtensionList) in API Explorer.
|
|
@@ -4993,7 +4993,7 @@ await rc.revoke();
|
|
|
4993
4993
|
|
|
4994
4994
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
4995
4995
|
- Parameter `accountId` is optional with default value `~`
|
|
4996
|
-
- `result` is of type [CallRecordingExtensions](./
|
|
4996
|
+
- `result` is of type [CallRecordingExtensions](./definitions/CallRecordingExtensions.ts)
|
|
4997
4997
|
|
|
4998
4998
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Recording-Settings-listCallRecordingExtensions) in API Explorer.
|
|
4999
4999
|
|
|
@@ -5017,7 +5017,7 @@ await rc.revoke();
|
|
|
5017
5017
|
|
|
5018
5018
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5019
5019
|
- Parameter `accountId` is optional with default value `~`
|
|
5020
|
-
- `result` is of type [DeviceTypesResource](./
|
|
5020
|
+
- `result` is of type [DeviceTypesResource](./definitions/DeviceTypesResource.ts)
|
|
5021
5021
|
|
|
5022
5022
|
[Try it out](https://developer.ringcentral.com/api-reference#Devices-directoryGetDeviceTypes) in API Explorer.
|
|
5023
5023
|
|
|
@@ -5041,8 +5041,8 @@ await rc.revoke();
|
|
|
5041
5041
|
|
|
5042
5042
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5043
5043
|
- Parameter `accountId` is optional with default value `~`
|
|
5044
|
-
- `devicesSearch` is of type [DevicesSearch](./
|
|
5045
|
-
- `result` is of type [DevicesPaginationResource](./
|
|
5044
|
+
- `devicesSearch` is of type [DevicesSearch](./definitions/DevicesSearch.ts)
|
|
5045
|
+
- `result` is of type [DevicesPaginationResource](./definitions/DevicesPaginationResource.ts)
|
|
5046
5046
|
|
|
5047
5047
|
[Try it out](https://developer.ringcentral.com/api-reference#Devices-directorySearchDevices) in API Explorer.
|
|
5048
5048
|
|
|
@@ -5066,9 +5066,9 @@ await rc.revoke();
|
|
|
5066
5066
|
|
|
5067
5067
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5068
5068
|
- Parameter `accountId` is optional with default value `~`
|
|
5069
|
-
- `searchDirectoryEntriesRequest` is of type [SearchDirectoryEntriesRequest](./
|
|
5070
|
-
- `searchDirectoryEntriesParameters` is of type [SearchDirectoryEntriesParameters](./
|
|
5071
|
-
- `result` is of type [DirectoryResource](./
|
|
5069
|
+
- `searchDirectoryEntriesRequest` is of type [SearchDirectoryEntriesRequest](./definitions/SearchDirectoryEntriesRequest.ts)
|
|
5070
|
+
- `searchDirectoryEntriesParameters` is of type [SearchDirectoryEntriesParameters](./definitions/SearchDirectoryEntriesParameters.ts)
|
|
5071
|
+
- `result` is of type [DirectoryResource](./definitions/DirectoryResource.ts)
|
|
5072
5072
|
|
|
5073
5073
|
[Try it out](https://developer.ringcentral.com/api-reference#Internal-Contacts-searchDirectoryEntries) in API Explorer.
|
|
5074
5074
|
|
|
@@ -5092,8 +5092,8 @@ await rc.revoke();
|
|
|
5092
5092
|
|
|
5093
5093
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5094
5094
|
- Parameter `accountId` is optional with default value `~`
|
|
5095
|
-
- `readDirectoryFederationParameters` is of type [ReadDirectoryFederationParameters](./
|
|
5096
|
-
- `result` is of type [FederationResource](./
|
|
5095
|
+
- `readDirectoryFederationParameters` is of type [ReadDirectoryFederationParameters](./definitions/ReadDirectoryFederationParameters.ts)
|
|
5096
|
+
- `result` is of type [FederationResource](./definitions/FederationResource.ts)
|
|
5097
5097
|
|
|
5098
5098
|
[Try it out](https://developer.ringcentral.com/api-reference#Internal-Contacts-readDirectoryFederation) in API Explorer.
|
|
5099
5099
|
|
|
@@ -5117,8 +5117,8 @@ await rc.revoke();
|
|
|
5117
5117
|
|
|
5118
5118
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5119
5119
|
- Parameter `accountId` is optional with default value `~`
|
|
5120
|
-
- `listEmergencyLocationsParameters` is of type [ListEmergencyLocationsParameters](./
|
|
5121
|
-
- `result` is of type [EmergencyLocationsResource](./
|
|
5120
|
+
- `listEmergencyLocationsParameters` is of type [ListEmergencyLocationsParameters](./definitions/ListEmergencyLocationsParameters.ts)
|
|
5121
|
+
- `result` is of type [EmergencyLocationsResource](./definitions/EmergencyLocationsResource.ts)
|
|
5122
5122
|
|
|
5123
5123
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-listEmergencyLocations) in API Explorer.
|
|
5124
5124
|
|
|
@@ -5142,8 +5142,8 @@ await rc.revoke();
|
|
|
5142
5142
|
|
|
5143
5143
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5144
5144
|
- Parameter `accountId` is optional with default value `~`
|
|
5145
|
-
- `emergencyLocationInfoRequest` is of type [EmergencyLocationInfoRequest](./
|
|
5146
|
-
- `result` is of type [EmergencyLocationResource](./
|
|
5145
|
+
- `emergencyLocationInfoRequest` is of type [EmergencyLocationInfoRequest](./definitions/EmergencyLocationInfoRequest.ts)
|
|
5146
|
+
- `result` is of type [EmergencyLocationResource](./definitions/EmergencyLocationResource.ts)
|
|
5147
5147
|
|
|
5148
5148
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-createEmergencyLocation) in API Explorer.
|
|
5149
5149
|
|
|
@@ -5167,8 +5167,8 @@ await rc.revoke();
|
|
|
5167
5167
|
|
|
5168
5168
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5169
5169
|
- Parameter `accountId` is optional with default value `~`
|
|
5170
|
-
- `readEmergencyLocationParameters` is of type [ReadEmergencyLocationParameters](./
|
|
5171
|
-
- `result` is of type [EmergencyLocationResource](./
|
|
5170
|
+
- `readEmergencyLocationParameters` is of type [ReadEmergencyLocationParameters](./definitions/ReadEmergencyLocationParameters.ts)
|
|
5171
|
+
- `result` is of type [EmergencyLocationResource](./definitions/EmergencyLocationResource.ts)
|
|
5172
5172
|
|
|
5173
5173
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-readEmergencyLocation) in API Explorer.
|
|
5174
5174
|
|
|
@@ -5192,8 +5192,8 @@ await rc.revoke();
|
|
|
5192
5192
|
|
|
5193
5193
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5194
5194
|
- Parameter `accountId` is optional with default value `~`
|
|
5195
|
-
- `emergencyLocationInfoRequest` is of type [EmergencyLocationInfoRequest](./
|
|
5196
|
-
- `result` is of type [EmergencyLocationResource](./
|
|
5195
|
+
- `emergencyLocationInfoRequest` is of type [EmergencyLocationInfoRequest](./definitions/EmergencyLocationInfoRequest.ts)
|
|
5196
|
+
- `result` is of type [EmergencyLocationResource](./definitions/EmergencyLocationResource.ts)
|
|
5197
5197
|
|
|
5198
5198
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-updateEmergencyLocation) in API Explorer.
|
|
5199
5199
|
|
|
@@ -5217,7 +5217,7 @@ await rc.revoke();
|
|
|
5217
5217
|
|
|
5218
5218
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5219
5219
|
- Parameter `accountId` is optional with default value `~`
|
|
5220
|
-
- `deleteEmergencyLocationParameters` is of type [DeleteEmergencyLocationParameters](./
|
|
5220
|
+
- `deleteEmergencyLocationParameters` is of type [DeleteEmergencyLocationParameters](./definitions/DeleteEmergencyLocationParameters.ts)
|
|
5221
5221
|
- `result` is an empty string
|
|
5222
5222
|
|
|
5223
5223
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-deleteEmergencyLocation) in API Explorer.
|
|
@@ -5242,8 +5242,8 @@ await rc.revoke();
|
|
|
5242
5242
|
|
|
5243
5243
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5244
5244
|
- Parameter `accountId` is optional with default value `~`
|
|
5245
|
-
- `extensionBulkUpdateRequest` is of type [ExtensionBulkUpdateRequest](./
|
|
5246
|
-
- `result` is of type [ExtensionBulkUpdateTaskResource](./
|
|
5245
|
+
- `extensionBulkUpdateRequest` is of type [ExtensionBulkUpdateRequest](./definitions/ExtensionBulkUpdateRequest.ts)
|
|
5246
|
+
- `result` is of type [ExtensionBulkUpdateTaskResource](./definitions/ExtensionBulkUpdateTaskResource.ts)
|
|
5247
5247
|
|
|
5248
5248
|
[Try it out](https://developer.ringcentral.com/api-reference#Extensions-extensionBulkUpdate) in API Explorer.
|
|
5249
5249
|
|
|
@@ -5267,7 +5267,7 @@ await rc.revoke();
|
|
|
5267
5267
|
|
|
5268
5268
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5269
5269
|
- Parameter `accountId` is optional with default value `~`
|
|
5270
|
-
- `result` is of type [ExtensionBulkUpdateTaskResource](./
|
|
5270
|
+
- `result` is of type [ExtensionBulkUpdateTaskResource](./definitions/ExtensionBulkUpdateTaskResource.ts)
|
|
5271
5271
|
|
|
5272
5272
|
[Try it out](https://developer.ringcentral.com/api-reference#Extensions-getExtensionBulkUpdateTask) in API Explorer.
|
|
5273
5273
|
|
|
@@ -5291,7 +5291,7 @@ await rc.revoke();
|
|
|
5291
5291
|
|
|
5292
5292
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5293
5293
|
- Parameter `accountId` is optional with default value `~`
|
|
5294
|
-
- `result` is of type [CallQueueOverflowSettings](./
|
|
5294
|
+
- `result` is of type [CallQueueOverflowSettings](./definitions/CallQueueOverflowSettings.ts)
|
|
5295
5295
|
|
|
5296
5296
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-getCallQueueOverflowSettings) in API Explorer.
|
|
5297
5297
|
|
|
@@ -5315,8 +5315,8 @@ await rc.revoke();
|
|
|
5315
5315
|
|
|
5316
5316
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5317
5317
|
- Parameter `accountId` is optional with default value `~`
|
|
5318
|
-
- `callQueueOverflowSettingsRequestResource` is of type [CallQueueOverflowSettingsRequestResource](./
|
|
5319
|
-
- `result` is of type [CallQueueOverflowSettings](./
|
|
5318
|
+
- `callQueueOverflowSettingsRequestResource` is of type [CallQueueOverflowSettingsRequestResource](./definitions/CallQueueOverflowSettingsRequestResource.ts)
|
|
5319
|
+
- `result` is of type [CallQueueOverflowSettings](./definitions/CallQueueOverflowSettings.ts)
|
|
5320
5320
|
|
|
5321
5321
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-updateCallQueueOverflowSettings) in API Explorer.
|
|
5322
5322
|
|
|
@@ -5341,8 +5341,8 @@ await rc.revoke();
|
|
|
5341
5341
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5342
5342
|
- Parameter `accountId` is optional with default value `~`
|
|
5343
5343
|
- Parameter `extensionId` is optional with default value `~`
|
|
5344
|
-
- `listExtensionActiveCallsParameters` is of type [ListExtensionActiveCallsParameters](./
|
|
5345
|
-
- `result` is of type [ActiveCallsResponse](./
|
|
5344
|
+
- `listExtensionActiveCallsParameters` is of type [ListExtensionActiveCallsParameters](./definitions/ListExtensionActiveCallsParameters.ts)
|
|
5345
|
+
- `result` is of type [ActiveCallsResponse](./definitions/ActiveCallsResponse.ts)
|
|
5346
5346
|
|
|
5347
5347
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-listExtensionActiveCalls) in API Explorer.
|
|
5348
5348
|
|
|
@@ -5367,8 +5367,8 @@ await rc.revoke();
|
|
|
5367
5367
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5368
5368
|
- Parameter `accountId` is optional with default value `~`
|
|
5369
5369
|
- Parameter `extensionId` is optional with default value `~`
|
|
5370
|
-
- `syncAddressBookParameters` is of type [SyncAddressBookParameters](./
|
|
5371
|
-
- `result` is of type [AddressBookSync](./
|
|
5370
|
+
- `syncAddressBookParameters` is of type [SyncAddressBookParameters](./definitions/SyncAddressBookParameters.ts)
|
|
5371
|
+
- `result` is of type [AddressBookSync](./definitions/AddressBookSync.ts)
|
|
5372
5372
|
|
|
5373
5373
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-syncAddressBook) in API Explorer.
|
|
5374
5374
|
|
|
@@ -5393,8 +5393,8 @@ await rc.revoke();
|
|
|
5393
5393
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5394
5394
|
- Parameter `accountId` is optional with default value `~`
|
|
5395
5395
|
- Parameter `extensionId` is optional with default value `~`
|
|
5396
|
-
- `listAnsweringRulesParameters` is of type [ListAnsweringRulesParameters](./
|
|
5397
|
-
- `result` is of type [UserAnsweringRuleList](./
|
|
5396
|
+
- `listAnsweringRulesParameters` is of type [ListAnsweringRulesParameters](./definitions/ListAnsweringRulesParameters.ts)
|
|
5397
|
+
- `result` is of type [UserAnsweringRuleList](./definitions/UserAnsweringRuleList.ts)
|
|
5398
5398
|
|
|
5399
5399
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-listAnsweringRules) in API Explorer.
|
|
5400
5400
|
|
|
@@ -5419,8 +5419,8 @@ await rc.revoke();
|
|
|
5419
5419
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5420
5420
|
- Parameter `accountId` is optional with default value `~`
|
|
5421
5421
|
- Parameter `extensionId` is optional with default value `~`
|
|
5422
|
-
- `createAnsweringRuleRequest` is of type [CreateAnsweringRuleRequest](./
|
|
5423
|
-
- `result` is of type [CustomAnsweringRuleInfo](./
|
|
5422
|
+
- `createAnsweringRuleRequest` is of type [CreateAnsweringRuleRequest](./definitions/CreateAnsweringRuleRequest.ts)
|
|
5423
|
+
- `result` is of type [CustomAnsweringRuleInfo](./definitions/CustomAnsweringRuleInfo.ts)
|
|
5424
5424
|
|
|
5425
5425
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-createAnsweringRule) in API Explorer.
|
|
5426
5426
|
|
|
@@ -5445,8 +5445,8 @@ await rc.revoke();
|
|
|
5445
5445
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5446
5446
|
- Parameter `accountId` is optional with default value `~`
|
|
5447
5447
|
- Parameter `extensionId` is optional with default value `~`
|
|
5448
|
-
- `readAnsweringRuleParameters` is of type [ReadAnsweringRuleParameters](./
|
|
5449
|
-
- `result` is of type [AnsweringRuleInfo](./
|
|
5448
|
+
- `readAnsweringRuleParameters` is of type [ReadAnsweringRuleParameters](./definitions/ReadAnsweringRuleParameters.ts)
|
|
5449
|
+
- `result` is of type [AnsweringRuleInfo](./definitions/AnsweringRuleInfo.ts)
|
|
5450
5450
|
|
|
5451
5451
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-readAnsweringRule) in API Explorer.
|
|
5452
5452
|
|
|
@@ -5471,8 +5471,8 @@ await rc.revoke();
|
|
|
5471
5471
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5472
5472
|
- Parameter `accountId` is optional with default value `~`
|
|
5473
5473
|
- Parameter `extensionId` is optional with default value `~`
|
|
5474
|
-
- `updateAnsweringRuleRequest` is of type [UpdateAnsweringRuleRequest](./
|
|
5475
|
-
- `result` is of type [AnsweringRuleInfo](./
|
|
5474
|
+
- `updateAnsweringRuleRequest` is of type [UpdateAnsweringRuleRequest](./definitions/UpdateAnsweringRuleRequest.ts)
|
|
5475
|
+
- `result` is of type [AnsweringRuleInfo](./definitions/AnsweringRuleInfo.ts)
|
|
5476
5476
|
|
|
5477
5477
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Handling-Rules-updateAnsweringRule) in API Explorer.
|
|
5478
5478
|
|
|
@@ -5522,8 +5522,8 @@ await rc.revoke();
|
|
|
5522
5522
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5523
5523
|
- Parameter `accountId` is optional with default value `~`
|
|
5524
5524
|
- Parameter `extensionId` is optional with default value `~`
|
|
5525
|
-
- `listUserAssignedRolesParameters` is of type [ListUserAssignedRolesParameters](./
|
|
5526
|
-
- `result` is of type [AssignedRolesResource](./
|
|
5525
|
+
- `listUserAssignedRolesParameters` is of type [ListUserAssignedRolesParameters](./definitions/ListUserAssignedRolesParameters.ts)
|
|
5526
|
+
- `result` is of type [AssignedRolesResource](./definitions/AssignedRolesResource.ts)
|
|
5527
5527
|
|
|
5528
5528
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-listUserAssignedRoles) in API Explorer.
|
|
5529
5529
|
|
|
@@ -5548,8 +5548,8 @@ await rc.revoke();
|
|
|
5548
5548
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5549
5549
|
- Parameter `accountId` is optional with default value `~`
|
|
5550
5550
|
- Parameter `extensionId` is optional with default value `~`
|
|
5551
|
-
- `assignedRolesResource` is of type [AssignedRolesResource](./
|
|
5552
|
-
- `result` is of type [AssignedRolesResource](./
|
|
5551
|
+
- `assignedRolesResource` is of type [AssignedRolesResource](./definitions/AssignedRolesResource.ts)
|
|
5552
|
+
- `result` is of type [AssignedRolesResource](./definitions/AssignedRolesResource.ts)
|
|
5553
5553
|
|
|
5554
5554
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-updateUserAssignedRoles) in API Explorer.
|
|
5555
5555
|
|
|
@@ -5574,7 +5574,7 @@ await rc.revoke();
|
|
|
5574
5574
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5575
5575
|
- Parameter `accountId` is optional with default value `~`
|
|
5576
5576
|
- Parameter `extensionId` is optional with default value `~`
|
|
5577
|
-
- `result` is of type [AuthProfileResource](./
|
|
5577
|
+
- `result` is of type [AuthProfileResource](./definitions/AuthProfileResource.ts)
|
|
5578
5578
|
|
|
5579
5579
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Permissions-readAuthorizationProfile) in API Explorer.
|
|
5580
5580
|
|
|
@@ -5599,7 +5599,7 @@ await rc.revoke();
|
|
|
5599
5599
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5600
5600
|
- Parameter `accountId` is optional with default value `~`
|
|
5601
5601
|
- Parameter `extensionId` is optional with default value `~`
|
|
5602
|
-
- `result` is of type [GetUserBusinessHoursResponse](./
|
|
5602
|
+
- `result` is of type [GetUserBusinessHoursResponse](./definitions/GetUserBusinessHoursResponse.ts)
|
|
5603
5603
|
|
|
5604
5604
|
[Try it out](https://developer.ringcentral.com/api-reference#Business-Hours-readUserBusinessHours) in API Explorer.
|
|
5605
5605
|
|
|
@@ -5624,8 +5624,8 @@ await rc.revoke();
|
|
|
5624
5624
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5625
5625
|
- Parameter `accountId` is optional with default value `~`
|
|
5626
5626
|
- Parameter `extensionId` is optional with default value `~`
|
|
5627
|
-
- `userBusinessHoursUpdateRequest` is of type [UserBusinessHoursUpdateRequest](./
|
|
5628
|
-
- `result` is of type [UserBusinessHoursUpdateResponse](./
|
|
5627
|
+
- `userBusinessHoursUpdateRequest` is of type [UserBusinessHoursUpdateRequest](./definitions/UserBusinessHoursUpdateRequest.ts)
|
|
5628
|
+
- `result` is of type [UserBusinessHoursUpdateResponse](./definitions/UserBusinessHoursUpdateResponse.ts)
|
|
5629
5629
|
|
|
5630
5630
|
[Try it out](https://developer.ringcentral.com/api-reference#Business-Hours-updateUserBusinessHours) in API Explorer.
|
|
5631
5631
|
|
|
@@ -5650,8 +5650,8 @@ await rc.revoke();
|
|
|
5650
5650
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5651
5651
|
- Parameter `accountId` is optional with default value `~`
|
|
5652
5652
|
- Parameter `extensionId` is optional with default value `~`
|
|
5653
|
-
- `syncUserCallLogParameters` is of type [SyncUserCallLogParameters](./
|
|
5654
|
-
- `result` is of type [CallLogSync](./
|
|
5653
|
+
- `syncUserCallLogParameters` is of type [SyncUserCallLogParameters](./definitions/SyncUserCallLogParameters.ts)
|
|
5654
|
+
- `result` is of type [CallLogSync](./definitions/CallLogSync.ts)
|
|
5655
5655
|
|
|
5656
5656
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Log-syncUserCallLog) in API Explorer.
|
|
5657
5657
|
|
|
@@ -5676,8 +5676,8 @@ await rc.revoke();
|
|
|
5676
5676
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5677
5677
|
- Parameter `accountId` is optional with default value `~`
|
|
5678
5678
|
- Parameter `extensionId` is optional with default value `~`
|
|
5679
|
-
- `userCallQueues` is of type [UserCallQueues](./
|
|
5680
|
-
- `result` is of type [UserCallQueues](./
|
|
5679
|
+
- `userCallQueues` is of type [UserCallQueues](./definitions/UserCallQueues.ts)
|
|
5680
|
+
- `result` is of type [UserCallQueues](./definitions/UserCallQueues.ts)
|
|
5681
5681
|
|
|
5682
5682
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Queues-updateUserCallQueues) in API Explorer.
|
|
5683
5683
|
|
|
@@ -5702,7 +5702,7 @@ await rc.revoke();
|
|
|
5702
5702
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5703
5703
|
- Parameter `accountId` is optional with default value `~`
|
|
5704
5704
|
- Parameter `extensionId` is optional with default value `~`
|
|
5705
|
-
- `result` is of type [CallerBlockingSettings](./
|
|
5705
|
+
- `result` is of type [CallerBlockingSettings](./definitions/CallerBlockingSettings.ts)
|
|
5706
5706
|
|
|
5707
5707
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Blocking-readCallerBlockingSettings) in API Explorer.
|
|
5708
5708
|
|
|
@@ -5727,8 +5727,8 @@ await rc.revoke();
|
|
|
5727
5727
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5728
5728
|
- Parameter `accountId` is optional with default value `~`
|
|
5729
5729
|
- Parameter `extensionId` is optional with default value `~`
|
|
5730
|
-
- `callerBlockingSettingsUpdate` is of type [CallerBlockingSettingsUpdate](./
|
|
5731
|
-
- `result` is of type [CallerBlockingSettings](./
|
|
5730
|
+
- `callerBlockingSettingsUpdate` is of type [CallerBlockingSettingsUpdate](./definitions/CallerBlockingSettingsUpdate.ts)
|
|
5731
|
+
- `result` is of type [CallerBlockingSettings](./definitions/CallerBlockingSettings.ts)
|
|
5732
5732
|
|
|
5733
5733
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Blocking-updateCallerBlockingSettings) in API Explorer.
|
|
5734
5734
|
|
|
@@ -5753,7 +5753,7 @@ await rc.revoke();
|
|
|
5753
5753
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5754
5754
|
- Parameter `accountId` is optional with default value `~`
|
|
5755
5755
|
- Parameter `extensionId` is optional with default value `~`
|
|
5756
|
-
- `result` is of type [ExtensionCallerIdInfo](./
|
|
5756
|
+
- `result` is of type [ExtensionCallerIdInfo](./definitions/ExtensionCallerIdInfo.ts)
|
|
5757
5757
|
|
|
5758
5758
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-readExtensionCallerId) in API Explorer.
|
|
5759
5759
|
|
|
@@ -5778,8 +5778,8 @@ await rc.revoke();
|
|
|
5778
5778
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5779
5779
|
- Parameter `accountId` is optional with default value `~`
|
|
5780
5780
|
- Parameter `extensionId` is optional with default value `~`
|
|
5781
|
-
- `extensionCallerIdInfoRequest` is of type [ExtensionCallerIdInfoRequest](./
|
|
5782
|
-
- `result` is of type [ExtensionCallerIdInfo](./
|
|
5781
|
+
- `extensionCallerIdInfoRequest` is of type [ExtensionCallerIdInfoRequest](./definitions/ExtensionCallerIdInfoRequest.ts)
|
|
5782
|
+
- `result` is of type [ExtensionCallerIdInfo](./definitions/ExtensionCallerIdInfo.ts)
|
|
5783
5783
|
|
|
5784
5784
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-updateExtensionCallerId) in API Explorer.
|
|
5785
5785
|
|
|
@@ -5804,8 +5804,8 @@ await rc.revoke();
|
|
|
5804
5804
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5805
5805
|
- Parameter `accountId` is optional with default value `~`
|
|
5806
5806
|
- Parameter `extensionId` is optional with default value `~`
|
|
5807
|
-
- `createInternalTextMessageRequest` is of type [CreateInternalTextMessageRequest](./
|
|
5808
|
-
- `result` is of type [GetInternalTextMessageInfoResponse](./
|
|
5807
|
+
- `createInternalTextMessageRequest` is of type [CreateInternalTextMessageRequest](./definitions/CreateInternalTextMessageRequest.ts)
|
|
5808
|
+
- `result` is of type [GetInternalTextMessageInfoResponse](./definitions/GetInternalTextMessageInfoResponse.ts)
|
|
5809
5809
|
|
|
5810
5810
|
[Try it out](https://developer.ringcentral.com/api-reference#Pager-Messages-createInternalTextMessage) in API Explorer.
|
|
5811
5811
|
|
|
@@ -5830,8 +5830,8 @@ await rc.revoke();
|
|
|
5830
5830
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5831
5831
|
- Parameter `accountId` is optional with default value `~`
|
|
5832
5832
|
- Parameter `extensionId` is optional with default value `~`
|
|
5833
|
-
- `readConferencingSettingsParameters` is of type [ReadConferencingSettingsParameters](./
|
|
5834
|
-
- `result` is of type [GetConferencingInfoResponse](./
|
|
5833
|
+
- `readConferencingSettingsParameters` is of type [ReadConferencingSettingsParameters](./definitions/ReadConferencingSettingsParameters.ts)
|
|
5834
|
+
- `result` is of type [GetConferencingInfoResponse](./definitions/GetConferencingInfoResponse.ts)
|
|
5835
5835
|
|
|
5836
5836
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-readConferencingSettings) in API Explorer.
|
|
5837
5837
|
|
|
@@ -5856,8 +5856,8 @@ await rc.revoke();
|
|
|
5856
5856
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5857
5857
|
- Parameter `accountId` is optional with default value `~`
|
|
5858
5858
|
- Parameter `extensionId` is optional with default value `~`
|
|
5859
|
-
- `updateConferencingInfoRequest` is of type [UpdateConferencingInfoRequest](./
|
|
5860
|
-
- `result` is of type [GetConferencingInfoResponse](./
|
|
5859
|
+
- `updateConferencingInfoRequest` is of type [UpdateConferencingInfoRequest](./definitions/UpdateConferencingInfoRequest.ts)
|
|
5860
|
+
- `result` is of type [GetConferencingInfoResponse](./definitions/GetConferencingInfoResponse.ts)
|
|
5861
5861
|
|
|
5862
5862
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-updateConferencingSettings) in API Explorer.
|
|
5863
5863
|
|
|
@@ -5882,7 +5882,7 @@ await rc.revoke();
|
|
|
5882
5882
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5883
5883
|
- Parameter `accountId` is optional with default value `~`
|
|
5884
5884
|
- Parameter `extensionId` is optional with default value `~`
|
|
5885
|
-
- `result` is of type [FavoriteContactList](./
|
|
5885
|
+
- `result` is of type [FavoriteContactList](./definitions/FavoriteContactList.ts)
|
|
5886
5886
|
|
|
5887
5887
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-listFavoriteContacts) in API Explorer.
|
|
5888
5888
|
|
|
@@ -5907,8 +5907,8 @@ await rc.revoke();
|
|
|
5907
5907
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5908
5908
|
- Parameter `accountId` is optional with default value `~`
|
|
5909
5909
|
- Parameter `extensionId` is optional with default value `~`
|
|
5910
|
-
- `favoriteCollection` is of type [FavoriteCollection](./
|
|
5911
|
-
- `result` is of type [FavoriteContactList](./
|
|
5910
|
+
- `favoriteCollection` is of type [FavoriteCollection](./definitions/FavoriteCollection.ts)
|
|
5911
|
+
- `result` is of type [FavoriteContactList](./definitions/FavoriteContactList.ts)
|
|
5912
5912
|
|
|
5913
5913
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-updateFavoriteContactList) in API Explorer.
|
|
5914
5914
|
|
|
@@ -5933,8 +5933,8 @@ await rc.revoke();
|
|
|
5933
5933
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5934
5934
|
- Parameter `accountId` is optional with default value `~`
|
|
5935
5935
|
- Parameter `extensionId` is optional with default value `~`
|
|
5936
|
-
- `readExtensionFeaturesParameters` is of type [ReadExtensionFeaturesParameters](./
|
|
5937
|
-
- `result` is of type [FeatureList](./
|
|
5936
|
+
- `readExtensionFeaturesParameters` is of type [ReadExtensionFeaturesParameters](./definitions/ReadExtensionFeaturesParameters.ts)
|
|
5937
|
+
- `result` is of type [FeatureList](./definitions/FeatureList.ts)
|
|
5938
5938
|
|
|
5939
5939
|
[Try it out](https://developer.ringcentral.com/api-reference#Features-readExtensionFeatures) in API Explorer.
|
|
5940
5940
|
|
|
@@ -5959,7 +5959,7 @@ await rc.revoke();
|
|
|
5959
5959
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5960
5960
|
- Parameter `accountId` is optional with default value `~`
|
|
5961
5961
|
- Parameter `extensionId` is optional with default value `~`
|
|
5962
|
-
- `result` is of type [GetExtensionForwardingNumberListResponse](./
|
|
5962
|
+
- `result` is of type [GetExtensionForwardingNumberListResponse](./definitions/GetExtensionForwardingNumberListResponse.ts)
|
|
5963
5963
|
|
|
5964
5964
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Forwarding-listForwardingNumbers) in API Explorer.
|
|
5965
5965
|
|
|
@@ -5984,8 +5984,8 @@ await rc.revoke();
|
|
|
5984
5984
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
5985
5985
|
- Parameter `accountId` is optional with default value `~`
|
|
5986
5986
|
- Parameter `extensionId` is optional with default value `~`
|
|
5987
|
-
- `createForwardingNumberRequest` is of type [CreateForwardingNumberRequest](./
|
|
5988
|
-
- `result` is of type [ForwardingNumberInfo](./
|
|
5987
|
+
- `createForwardingNumberRequest` is of type [CreateForwardingNumberRequest](./definitions/CreateForwardingNumberRequest.ts)
|
|
5988
|
+
- `result` is of type [ForwardingNumberInfo](./definitions/ForwardingNumberInfo.ts)
|
|
5989
5989
|
|
|
5990
5990
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Forwarding-createForwardingNumber) in API Explorer.
|
|
5991
5991
|
|
|
@@ -6010,7 +6010,7 @@ await rc.revoke();
|
|
|
6010
6010
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6011
6011
|
- Parameter `accountId` is optional with default value `~`
|
|
6012
6012
|
- Parameter `extensionId` is optional with default value `~`
|
|
6013
|
-
- `deleteForwardingNumbersRequest` is of type [DeleteForwardingNumbersRequest](./
|
|
6013
|
+
- `deleteForwardingNumbersRequest` is of type [DeleteForwardingNumbersRequest](./definitions/DeleteForwardingNumbersRequest.ts)
|
|
6014
6014
|
- `result` is an empty string
|
|
6015
6015
|
|
|
6016
6016
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Forwarding-deleteForwardingNumbers) in API Explorer.
|
|
@@ -6036,7 +6036,7 @@ await rc.revoke();
|
|
|
6036
6036
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6037
6037
|
- Parameter `accountId` is optional with default value `~`
|
|
6038
6038
|
- Parameter `extensionId` is optional with default value `~`
|
|
6039
|
-
- `result` is of type [ForwardingNumberResource](./
|
|
6039
|
+
- `result` is of type [ForwardingNumberResource](./definitions/ForwardingNumberResource.ts)
|
|
6040
6040
|
|
|
6041
6041
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Forwarding-readForwardingNumber) in API Explorer.
|
|
6042
6042
|
|
|
@@ -6061,8 +6061,8 @@ await rc.revoke();
|
|
|
6061
6061
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6062
6062
|
- Parameter `accountId` is optional with default value `~`
|
|
6063
6063
|
- Parameter `extensionId` is optional with default value `~`
|
|
6064
|
-
- `updateForwardingNumberRequest` is of type [UpdateForwardingNumberRequest](./
|
|
6065
|
-
- `result` is of type [ForwardingNumberInfo](./
|
|
6064
|
+
- `updateForwardingNumberRequest` is of type [UpdateForwardingNumberRequest](./definitions/UpdateForwardingNumberRequest.ts)
|
|
6065
|
+
- `result` is of type [ForwardingNumberInfo](./definitions/ForwardingNumberInfo.ts)
|
|
6066
6066
|
|
|
6067
6067
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Forwarding-updateForwardingNumber) in API Explorer.
|
|
6068
6068
|
|
|
@@ -6137,7 +6137,7 @@ await rc.revoke();
|
|
|
6137
6137
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6138
6138
|
- Parameter `accountId` is optional with default value `~`
|
|
6139
6139
|
- Parameter `extensionId` is optional with default value `~`
|
|
6140
|
-
- `result` is of type [PublicMeetingInvitationResponse](./
|
|
6140
|
+
- `result` is of type [PublicMeetingInvitationResponse](./definitions/PublicMeetingInvitationResponse.ts)
|
|
6141
6141
|
|
|
6142
6142
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Management-readMeetingInvitation) in API Explorer.
|
|
6143
6143
|
|
|
@@ -6162,8 +6162,8 @@ await rc.revoke();
|
|
|
6162
6162
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6163
6163
|
- Parameter `accountId` is optional with default value `~`
|
|
6164
6164
|
- Parameter `extensionId` is optional with default value `~`
|
|
6165
|
-
- `listMessagesParameters` is of type [ListMessagesParameters](./
|
|
6166
|
-
- `result` is of type [GetMessageList](./
|
|
6165
|
+
- `listMessagesParameters` is of type [ListMessagesParameters](./definitions/ListMessagesParameters.ts)
|
|
6166
|
+
- `result` is of type [GetMessageList](./definitions/GetMessageList.ts)
|
|
6167
6167
|
|
|
6168
6168
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-listMessages) in API Explorer.
|
|
6169
6169
|
|
|
@@ -6188,7 +6188,7 @@ await rc.revoke();
|
|
|
6188
6188
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6189
6189
|
- Parameter `accountId` is optional with default value `~`
|
|
6190
6190
|
- Parameter `extensionId` is optional with default value `~`
|
|
6191
|
-
- `deleteMessageByFilterParameters` is of type [DeleteMessageByFilterParameters](./
|
|
6191
|
+
- `deleteMessageByFilterParameters` is of type [DeleteMessageByFilterParameters](./definitions/DeleteMessageByFilterParameters.ts)
|
|
6192
6192
|
- `result` is an empty string
|
|
6193
6193
|
|
|
6194
6194
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-deleteMessageByFilter) in API Explorer.
|
|
@@ -6214,7 +6214,7 @@ await rc.revoke();
|
|
|
6214
6214
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6215
6215
|
- Parameter `accountId` is optional with default value `~`
|
|
6216
6216
|
- Parameter `extensionId` is optional with default value `~`
|
|
6217
|
-
- `result` is of type [GetMessageInfoResponse](./
|
|
6217
|
+
- `result` is of type [GetMessageInfoResponse](./definitions/GetMessageInfoResponse.ts)
|
|
6218
6218
|
|
|
6219
6219
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-readMessage) in API Explorer.
|
|
6220
6220
|
|
|
@@ -6239,9 +6239,9 @@ await rc.revoke();
|
|
|
6239
6239
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6240
6240
|
- Parameter `accountId` is optional with default value `~`
|
|
6241
6241
|
- Parameter `extensionId` is optional with default value `~`
|
|
6242
|
-
- `updateMessageRequest` is of type [UpdateMessageRequest](./
|
|
6243
|
-
- `updateMessageParameters` is of type [UpdateMessageParameters](./
|
|
6244
|
-
- `result` is of type [GetMessageInfoResponse](./
|
|
6242
|
+
- `updateMessageRequest` is of type [UpdateMessageRequest](./definitions/UpdateMessageRequest.ts)
|
|
6243
|
+
- `updateMessageParameters` is of type [UpdateMessageParameters](./definitions/UpdateMessageParameters.ts)
|
|
6244
|
+
- `result` is of type [GetMessageInfoResponse](./definitions/GetMessageInfoResponse.ts)
|
|
6245
6245
|
|
|
6246
6246
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-updateMessage) in API Explorer.
|
|
6247
6247
|
|
|
@@ -6266,7 +6266,7 @@ await rc.revoke();
|
|
|
6266
6266
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6267
6267
|
- Parameter `accountId` is optional with default value `~`
|
|
6268
6268
|
- Parameter `extensionId` is optional with default value `~`
|
|
6269
|
-
- `deleteMessageParameters` is of type [DeleteMessageParameters](./
|
|
6269
|
+
- `deleteMessageParameters` is of type [DeleteMessageParameters](./definitions/DeleteMessageParameters.ts)
|
|
6270
6270
|
- `result` is an empty string
|
|
6271
6271
|
|
|
6272
6272
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-deleteMessage) in API Explorer.
|
|
@@ -6292,8 +6292,8 @@ await rc.revoke();
|
|
|
6292
6292
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6293
6293
|
- Parameter `accountId` is optional with default value `~`
|
|
6294
6294
|
- Parameter `extensionId` is optional with default value `~`
|
|
6295
|
-
- `syncMessagesParameters` is of type [SyncMessagesParameters](./
|
|
6296
|
-
- `result` is of type [GetMessageSyncResponse](./
|
|
6295
|
+
- `syncMessagesParameters` is of type [SyncMessagesParameters](./definitions/SyncMessagesParameters.ts)
|
|
6296
|
+
- `result` is of type [GetMessageSyncResponse](./definitions/GetMessageSyncResponse.ts)
|
|
6297
6297
|
|
|
6298
6298
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-syncMessages) in API Explorer.
|
|
6299
6299
|
|
|
@@ -6318,8 +6318,8 @@ await rc.revoke();
|
|
|
6318
6318
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6319
6319
|
- Parameter `accountId` is optional with default value `~`
|
|
6320
6320
|
- Parameter `extensionId` is optional with default value `~`
|
|
6321
|
-
- `listExtensionPhoneNumbersParameters` is of type [ListExtensionPhoneNumbersParameters](./
|
|
6322
|
-
- `result` is of type [GetExtensionPhoneNumbersResponse](./
|
|
6321
|
+
- `listExtensionPhoneNumbersParameters` is of type [ListExtensionPhoneNumbersParameters](./definitions/ListExtensionPhoneNumbersParameters.ts)
|
|
6322
|
+
- `result` is of type [GetExtensionPhoneNumbersResponse](./definitions/GetExtensionPhoneNumbersResponse.ts)
|
|
6323
6323
|
|
|
6324
6324
|
[Try it out](https://developer.ringcentral.com/api-reference#Phone-Numbers-listExtensionPhoneNumbers) in API Explorer.
|
|
6325
6325
|
|
|
@@ -6344,8 +6344,8 @@ await rc.revoke();
|
|
|
6344
6344
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6345
6345
|
- Parameter `accountId` is optional with default value `~`
|
|
6346
6346
|
- Parameter `extensionId` is optional with default value `~`
|
|
6347
|
-
- `readUserPresenceStatusParameters` is of type [ReadUserPresenceStatusParameters](./
|
|
6348
|
-
- `result` is of type [GetPresenceInfo](./
|
|
6347
|
+
- `readUserPresenceStatusParameters` is of type [ReadUserPresenceStatusParameters](./definitions/ReadUserPresenceStatusParameters.ts)
|
|
6348
|
+
- `result` is of type [GetPresenceInfo](./definitions/GetPresenceInfo.ts)
|
|
6349
6349
|
|
|
6350
6350
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-readUserPresenceStatus) in API Explorer.
|
|
6351
6351
|
|
|
@@ -6370,8 +6370,8 @@ await rc.revoke();
|
|
|
6370
6370
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6371
6371
|
- Parameter `accountId` is optional with default value `~`
|
|
6372
6372
|
- Parameter `extensionId` is optional with default value `~`
|
|
6373
|
-
- `presenceInfoRequest` is of type [PresenceInfoRequest](./
|
|
6374
|
-
- `result` is of type [PresenceInfoResponse](./
|
|
6373
|
+
- `presenceInfoRequest` is of type [PresenceInfoRequest](./definitions/PresenceInfoRequest.ts)
|
|
6374
|
+
- `result` is of type [PresenceInfoResponse](./definitions/PresenceInfoResponse.ts)
|
|
6375
6375
|
|
|
6376
6376
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-updateUserPresenceStatus) in API Explorer.
|
|
6377
6377
|
|
|
@@ -6425,7 +6425,7 @@ await rc.revoke();
|
|
|
6425
6425
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6426
6426
|
- Parameter `accountId` is optional with default value `~`
|
|
6427
6427
|
- Parameter `extensionId` is optional with default value `~`
|
|
6428
|
-
- `createUserProfileImageRequest` is of type [CreateUserProfileImageRequest](./
|
|
6428
|
+
- `createUserProfileImageRequest` is of type [CreateUserProfileImageRequest](./definitions/CreateUserProfileImageRequest.ts)
|
|
6429
6429
|
- `result` is an empty string
|
|
6430
6430
|
|
|
6431
6431
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-createUserProfileImage) in API Explorer.
|
|
@@ -6451,7 +6451,7 @@ await rc.revoke();
|
|
|
6451
6451
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6452
6452
|
- Parameter `accountId` is optional with default value `~`
|
|
6453
6453
|
- Parameter `extensionId` is optional with default value `~`
|
|
6454
|
-
- `updateUserProfileImageRequest` is of type [UpdateUserProfileImageRequest](./
|
|
6454
|
+
- `updateUserProfileImageRequest` is of type [UpdateUserProfileImageRequest](./definitions/UpdateUserProfileImageRequest.ts)
|
|
6455
6455
|
- `result` is an empty string
|
|
6456
6456
|
|
|
6457
6457
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-updateUserProfileImage) in API Explorer.
|
|
@@ -6531,7 +6531,7 @@ await rc.revoke();
|
|
|
6531
6531
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6532
6532
|
- Parameter `accountId` is optional with default value `~`
|
|
6533
6533
|
- Parameter `extensionId` is optional with default value `~`
|
|
6534
|
-
- `result` is of type [UnifiedPresence](./
|
|
6534
|
+
- `result` is of type [UnifiedPresence](./definitions/UnifiedPresence.ts)
|
|
6535
6535
|
|
|
6536
6536
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-readUnifiedPresence) in API Explorer.
|
|
6537
6537
|
|
|
@@ -6556,8 +6556,8 @@ await rc.revoke();
|
|
|
6556
6556
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6557
6557
|
- Parameter `accountId` is optional with default value `~`
|
|
6558
6558
|
- Parameter `extensionId` is optional with default value `~`
|
|
6559
|
-
- `updateUnifiedPresence` is of type [UpdateUnifiedPresence](./
|
|
6560
|
-
- `result` is of type [UnifiedPresence](./
|
|
6559
|
+
- `updateUnifiedPresence` is of type [UpdateUnifiedPresence](./definitions/UpdateUnifiedPresence.ts)
|
|
6560
|
+
- `result` is of type [UnifiedPresence](./definitions/UnifiedPresence.ts)
|
|
6561
6561
|
|
|
6562
6562
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-updateUnifiedPresence) in API Explorer.
|
|
6563
6563
|
|
|
@@ -6609,8 +6609,8 @@ await rc.revoke();
|
|
|
6609
6609
|
|
|
6610
6610
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6611
6611
|
- Parameter `accountId` is optional with default value `~`
|
|
6612
|
-
- `listAccountMeetingRecordingsParameters` is of type [ListAccountMeetingRecordingsParameters](./
|
|
6613
|
-
- `result` is of type [ListMeetingRecordingsResponse](./
|
|
6612
|
+
- `listAccountMeetingRecordingsParameters` is of type [ListAccountMeetingRecordingsParameters](./definitions/ListAccountMeetingRecordingsParameters.ts)
|
|
6613
|
+
- `result` is of type [ListMeetingRecordingsResponse](./definitions/ListMeetingRecordingsResponse.ts)
|
|
6614
6614
|
|
|
6615
6615
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Recordings-listAccountMeetingRecordings) in API Explorer.
|
|
6616
6616
|
|
|
@@ -6634,7 +6634,7 @@ await rc.revoke();
|
|
|
6634
6634
|
|
|
6635
6635
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6636
6636
|
- Parameter `accountId` is optional with default value `~`
|
|
6637
|
-
- `result` is of type [AccountLockedSettingResponse](./
|
|
6637
|
+
- `result` is of type [AccountLockedSettingResponse](./definitions/AccountLockedSettingResponse.ts)
|
|
6638
6638
|
|
|
6639
6639
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Configuration-getAccountLockedSetting) in API Explorer.
|
|
6640
6640
|
|
|
@@ -6658,7 +6658,7 @@ await rc.revoke();
|
|
|
6658
6658
|
|
|
6659
6659
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6660
6660
|
- Parameter `accountId` is optional with default value `~`
|
|
6661
|
-
- `result` is of type [MessageStoreConfiguration](./
|
|
6661
|
+
- `result` is of type [MessageStoreConfiguration](./definitions/MessageStoreConfiguration.ts)
|
|
6662
6662
|
|
|
6663
6663
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-readMessageStoreConfiguration) in API Explorer.
|
|
6664
6664
|
|
|
@@ -6682,8 +6682,8 @@ await rc.revoke();
|
|
|
6682
6682
|
|
|
6683
6683
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6684
6684
|
- Parameter `accountId` is optional with default value `~`
|
|
6685
|
-
- `messageStoreConfiguration` is of type [MessageStoreConfiguration](./
|
|
6686
|
-
- `result` is of type [MessageStoreConfiguration](./
|
|
6685
|
+
- `messageStoreConfiguration` is of type [MessageStoreConfiguration](./definitions/MessageStoreConfiguration.ts)
|
|
6686
|
+
- `result` is of type [MessageStoreConfiguration](./definitions/MessageStoreConfiguration.ts)
|
|
6687
6687
|
|
|
6688
6688
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Store-updateMessageStoreConfiguration) in API Explorer.
|
|
6689
6689
|
|
|
@@ -6707,8 +6707,8 @@ await rc.revoke();
|
|
|
6707
6707
|
|
|
6708
6708
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6709
6709
|
- Parameter `accountId` is optional with default value `~`
|
|
6710
|
-
- `createMessageStoreReportRequest` is of type [CreateMessageStoreReportRequest](./
|
|
6711
|
-
- `result` is of type [MessageStoreReport](./
|
|
6710
|
+
- `createMessageStoreReportRequest` is of type [CreateMessageStoreReportRequest](./definitions/CreateMessageStoreReportRequest.ts)
|
|
6711
|
+
- `result` is of type [MessageStoreReport](./definitions/MessageStoreReport.ts)
|
|
6712
6712
|
|
|
6713
6713
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Exports-createMessageStoreReport) in API Explorer.
|
|
6714
6714
|
|
|
@@ -6732,7 +6732,7 @@ await rc.revoke();
|
|
|
6732
6732
|
|
|
6733
6733
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6734
6734
|
- Parameter `accountId` is optional with default value `~`
|
|
6735
|
-
- `result` is of type [MessageStoreReport](./
|
|
6735
|
+
- `result` is of type [MessageStoreReport](./definitions/MessageStoreReport.ts)
|
|
6736
6736
|
|
|
6737
6737
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Exports-readMessageStoreReportTask) in API Explorer.
|
|
6738
6738
|
|
|
@@ -6756,8 +6756,8 @@ await rc.revoke();
|
|
|
6756
6756
|
|
|
6757
6757
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6758
6758
|
- Parameter `accountId` is optional with default value `~`
|
|
6759
|
-
- `listPagingGroupDevicesParameters` is of type [ListPagingGroupDevicesParameters](./
|
|
6760
|
-
- `result` is of type [PagingOnlyGroupDevices](./
|
|
6759
|
+
- `listPagingGroupDevicesParameters` is of type [ListPagingGroupDevicesParameters](./definitions/ListPagingGroupDevicesParameters.ts)
|
|
6760
|
+
- `result` is of type [PagingOnlyGroupDevices](./definitions/PagingOnlyGroupDevices.ts)
|
|
6761
6761
|
|
|
6762
6762
|
[Try it out](https://developer.ringcentral.com/api-reference#Paging-Only-Groups-listPagingGroupDevices) in API Explorer.
|
|
6763
6763
|
|
|
@@ -6781,8 +6781,8 @@ await rc.revoke();
|
|
|
6781
6781
|
|
|
6782
6782
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6783
6783
|
- Parameter `accountId` is optional with default value `~`
|
|
6784
|
-
- `listPagingGroupUsersParameters` is of type [ListPagingGroupUsersParameters](./
|
|
6785
|
-
- `result` is of type [PagingOnlyGroupUsers](./
|
|
6784
|
+
- `listPagingGroupUsersParameters` is of type [ListPagingGroupUsersParameters](./definitions/ListPagingGroupUsersParameters.ts)
|
|
6785
|
+
- `result` is of type [PagingOnlyGroupUsers](./definitions/PagingOnlyGroupUsers.ts)
|
|
6786
6786
|
|
|
6787
6787
|
[Try it out](https://developer.ringcentral.com/api-reference#Paging-Only-Groups-listPagingGroupUsers) in API Explorer.
|
|
6788
6788
|
|
|
@@ -6806,8 +6806,8 @@ await rc.revoke();
|
|
|
6806
6806
|
|
|
6807
6807
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6808
6808
|
- Parameter `accountId` is optional with default value `~`
|
|
6809
|
-
- `makeCallOutRequest` is of type [MakeCallOutRequest](./
|
|
6810
|
-
- `result` is of type [CallSession](./
|
|
6809
|
+
- `makeCallOutRequest` is of type [MakeCallOutRequest](./definitions/MakeCallOutRequest.ts)
|
|
6810
|
+
- `result` is of type [CallSession](./definitions/CallSession.ts)
|
|
6811
6811
|
|
|
6812
6812
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-createCallOutCallSession) in API Explorer.
|
|
6813
6813
|
|
|
@@ -6831,7 +6831,7 @@ await rc.revoke();
|
|
|
6831
6831
|
|
|
6832
6832
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6833
6833
|
- Parameter `accountId` is optional with default value `~`
|
|
6834
|
-
- `result` is of type [CallSession](./
|
|
6834
|
+
- `result` is of type [CallSession](./definitions/CallSession.ts)
|
|
6835
6835
|
|
|
6836
6836
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-createConferenceCallSession) in API Explorer.
|
|
6837
6837
|
|
|
@@ -6855,8 +6855,8 @@ await rc.revoke();
|
|
|
6855
6855
|
|
|
6856
6856
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6857
6857
|
- Parameter `accountId` is optional with default value `~`
|
|
6858
|
-
- `readCallSessionStatusParameters` is of type [ReadCallSessionStatusParameters](./
|
|
6859
|
-
- `result` is of type [CallSessionObject](./
|
|
6858
|
+
- `readCallSessionStatusParameters` is of type [ReadCallSessionStatusParameters](./definitions/ReadCallSessionStatusParameters.ts)
|
|
6859
|
+
- `result` is of type [CallSessionObject](./definitions/CallSessionObject.ts)
|
|
6860
6860
|
|
|
6861
6861
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-readCallSessionStatus) in API Explorer.
|
|
6862
6862
|
|
|
@@ -6904,7 +6904,7 @@ await rc.revoke();
|
|
|
6904
6904
|
|
|
6905
6905
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6906
6906
|
- Parameter `accountId` is optional with default value `~`
|
|
6907
|
-
- `result` is of type [CallParty](./
|
|
6907
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
6908
6908
|
|
|
6909
6909
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-readCallPartyStatus) in API Explorer.
|
|
6910
6910
|
|
|
@@ -6952,8 +6952,8 @@ await rc.revoke();
|
|
|
6952
6952
|
|
|
6953
6953
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6954
6954
|
- Parameter `accountId` is optional with default value `~`
|
|
6955
|
-
- `partyUpdateRequest` is of type [PartyUpdateRequest](./
|
|
6956
|
-
- `result` is of type [CallParty](./
|
|
6955
|
+
- `partyUpdateRequest` is of type [PartyUpdateRequest](./definitions/PartyUpdateRequest.ts)
|
|
6956
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
6957
6957
|
|
|
6958
6958
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-updateCallParty) in API Explorer.
|
|
6959
6959
|
|
|
@@ -6977,8 +6977,8 @@ await rc.revoke();
|
|
|
6977
6977
|
|
|
6978
6978
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
6979
6979
|
- Parameter `accountId` is optional with default value `~`
|
|
6980
|
-
- `superviseCallSessionRequest` is of type [SuperviseCallSessionRequest](./
|
|
6981
|
-
- `result` is of type [SuperviseCallSessionResponse](./
|
|
6980
|
+
- `superviseCallSessionRequest` is of type [SuperviseCallSessionRequest](./definitions/SuperviseCallSessionRequest.ts)
|
|
6981
|
+
- `result` is of type [SuperviseCallSessionResponse](./definitions/SuperviseCallSessionResponse.ts)
|
|
6982
6982
|
|
|
6983
6983
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-superviseCallSession) in API Explorer.
|
|
6984
6984
|
|
|
@@ -7002,7 +7002,7 @@ await rc.revoke();
|
|
|
7002
7002
|
|
|
7003
7003
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7004
7004
|
- Parameter `accountId` is optional with default value `~`
|
|
7005
|
-
- `bulkRoleAssignResource` is of type [BulkRoleAssignResource](./
|
|
7005
|
+
- `bulkRoleAssignResource` is of type [BulkRoleAssignResource](./definitions/BulkRoleAssignResource.ts)
|
|
7006
7006
|
- `result` is an empty string
|
|
7007
7007
|
|
|
7008
7008
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-assignMultipleUserRoles) in API Explorer.
|
|
@@ -7026,7 +7026,7 @@ await rc.revoke();
|
|
|
7026
7026
|
```
|
|
7027
7027
|
|
|
7028
7028
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7029
|
-
- `result` is of type [ContractedCountryListResponse](./
|
|
7029
|
+
- `result` is of type [ContractedCountryListResponse](./definitions/ContractedCountryListResponse.ts)
|
|
7030
7030
|
|
|
7031
7031
|
[Try it out](https://developer.ringcentral.com/api-reference#Company-listContractedCountries) in API Explorer.
|
|
7032
7032
|
|
|
@@ -7049,8 +7049,8 @@ await rc.revoke();
|
|
|
7049
7049
|
```
|
|
7050
7050
|
|
|
7051
7051
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7052
|
-
- `listDomesticCountriesParameters` is of type [ListDomesticCountriesParameters](./
|
|
7053
|
-
- `result` is of type [CountryListDictionaryModel](./
|
|
7052
|
+
- `listDomesticCountriesParameters` is of type [ListDomesticCountriesParameters](./definitions/ListDomesticCountriesParameters.ts)
|
|
7053
|
+
- `result` is of type [CountryListDictionaryModel](./definitions/CountryListDictionaryModel.ts)
|
|
7054
7054
|
|
|
7055
7055
|
[Try it out](https://developer.ringcentral.com/api-reference#Company-listDomesticCountries) in API Explorer.
|
|
7056
7056
|
|
|
@@ -7073,8 +7073,8 @@ await rc.revoke();
|
|
|
7073
7073
|
```
|
|
7074
7074
|
|
|
7075
7075
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7076
|
-
- `listPermissionCategoriesParameters` is of type [ListPermissionCategoriesParameters](./
|
|
7077
|
-
- `result` is of type [PermissionCategoryCollectionResource](./
|
|
7076
|
+
- `listPermissionCategoriesParameters` is of type [ListPermissionCategoriesParameters](./definitions/ListPermissionCategoriesParameters.ts)
|
|
7077
|
+
- `result` is of type [PermissionCategoryCollectionResource](./definitions/PermissionCategoryCollectionResource.ts)
|
|
7078
7078
|
|
|
7079
7079
|
[Try it out](https://developer.ringcentral.com/api-reference#Permissions-listPermissionCategories) in API Explorer.
|
|
7080
7080
|
|
|
@@ -7097,7 +7097,7 @@ await rc.revoke();
|
|
|
7097
7097
|
```
|
|
7098
7098
|
|
|
7099
7099
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7100
|
-
- `result` is of type [PermissionCategoryResource](./
|
|
7100
|
+
- `result` is of type [PermissionCategoryResource](./definitions/PermissionCategoryResource.ts)
|
|
7101
7101
|
|
|
7102
7102
|
[Try it out](https://developer.ringcentral.com/api-reference#Permissions-readPermissionCategory) in API Explorer.
|
|
7103
7103
|
|
|
@@ -7119,8 +7119,8 @@ var result = await rc.teamMessaging(version).chats(chatId).adaptiveCards().post(
|
|
|
7119
7119
|
await rc.revoke();
|
|
7120
7120
|
```
|
|
7121
7121
|
|
|
7122
|
-
- `adaptiveCardRequest` is of type [AdaptiveCardRequest](./
|
|
7123
|
-
- `result` is of type [AdaptiveCardShortInfo](./
|
|
7122
|
+
- `adaptiveCardRequest` is of type [AdaptiveCardRequest](./definitions/AdaptiveCardRequest.ts)
|
|
7123
|
+
- `result` is of type [AdaptiveCardShortInfo](./definitions/AdaptiveCardShortInfo.ts)
|
|
7124
7124
|
|
|
7125
7125
|
[Try it out](https://developer.ringcentral.com/api-reference#Adaptive-Cards-createGlipAdaptiveCardNew) in API Explorer.
|
|
7126
7126
|
|
|
@@ -7144,8 +7144,8 @@ await rc.revoke();
|
|
|
7144
7144
|
|
|
7145
7145
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7146
7146
|
- Parameter `accountId` is optional with default value `~`
|
|
7147
|
-
- `optOutBulkAssignRequest` is of type [OptOutBulkAssignRequest](./
|
|
7148
|
-
- `result` is of type [OptOutBulkAssignResponse](./
|
|
7147
|
+
- `optOutBulkAssignRequest` is of type [OptOutBulkAssignRequest](./definitions/OptOutBulkAssignRequest.ts)
|
|
7148
|
+
- `result` is of type [OptOutBulkAssignResponse](./definitions/OptOutBulkAssignResponse.ts)
|
|
7149
7149
|
|
|
7150
7150
|
[Try it out](https://developer.ringcentral.com/api-reference#High-Volume-SMS-addA2PSMSOptOuts) in API Explorer.
|
|
7151
7151
|
|
|
@@ -7169,7 +7169,7 @@ await rc.revoke();
|
|
|
7169
7169
|
|
|
7170
7170
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7171
7171
|
- Parameter `accountId` is optional with default value `~`
|
|
7172
|
-
- `result` is of type [AddressBookBulkUploadResponse](./
|
|
7172
|
+
- `result` is of type [AddressBookBulkUploadResponse](./definitions/AddressBookBulkUploadResponse.ts)
|
|
7173
7173
|
|
|
7174
7174
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-getAddressBookBulkUploadTask) in API Explorer.
|
|
7175
7175
|
|
|
@@ -7193,7 +7193,7 @@ await rc.revoke();
|
|
|
7193
7193
|
|
|
7194
7194
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7195
7195
|
- Parameter `accountId` is optional with default value `~`
|
|
7196
|
-
- `callMonitoringBulkAssign` is of type [CallMonitoringBulkAssign](./
|
|
7196
|
+
- `callMonitoringBulkAssign` is of type [CallMonitoringBulkAssign](./definitions/CallMonitoringBulkAssign.ts)
|
|
7197
7197
|
- `result` is an empty string
|
|
7198
7198
|
|
|
7199
7199
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Monitoring-Groups-updateCallMonitoringGroupList) in API Explorer.
|
|
@@ -7218,8 +7218,8 @@ await rc.revoke();
|
|
|
7218
7218
|
|
|
7219
7219
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7220
7220
|
- Parameter `accountId` is optional with default value `~`
|
|
7221
|
-
- `listCallMonitoringGroupMembersParameters` is of type [ListCallMonitoringGroupMembersParameters](./
|
|
7222
|
-
- `result` is of type [CallMonitoringGroupMemberList](./
|
|
7221
|
+
- `listCallMonitoringGroupMembersParameters` is of type [ListCallMonitoringGroupMembersParameters](./definitions/ListCallMonitoringGroupMembersParameters.ts)
|
|
7222
|
+
- `result` is of type [CallMonitoringGroupMemberList](./definitions/CallMonitoringGroupMemberList.ts)
|
|
7223
7223
|
|
|
7224
7224
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Monitoring-Groups-listCallMonitoringGroupMembers) in API Explorer.
|
|
7225
7225
|
|
|
@@ -7243,8 +7243,8 @@ await rc.revoke();
|
|
|
7243
7243
|
|
|
7244
7244
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7245
7245
|
- Parameter `accountId` is optional with default value `~`
|
|
7246
|
-
- `listCallRecordingCustomGreetingsParameters` is of type [ListCallRecordingCustomGreetingsParameters](./
|
|
7247
|
-
- `result` is of type [CallRecordingCustomGreetings](./
|
|
7246
|
+
- `listCallRecordingCustomGreetingsParameters` is of type [ListCallRecordingCustomGreetingsParameters](./definitions/ListCallRecordingCustomGreetingsParameters.ts)
|
|
7247
|
+
- `result` is of type [CallRecordingCustomGreetings](./definitions/CallRecordingCustomGreetings.ts)
|
|
7248
7248
|
|
|
7249
7249
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Recording-Settings-listCallRecordingCustomGreetings) in API Explorer.
|
|
7250
7250
|
|
|
@@ -7316,8 +7316,8 @@ await rc.revoke();
|
|
|
7316
7316
|
|
|
7317
7317
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7318
7318
|
- Parameter `accountId` is optional with default value `~`
|
|
7319
|
-
- `listDevicesAutomaticLocationUpdatesParameters` is of type [ListDevicesAutomaticLocationUpdatesParameters](./
|
|
7320
|
-
- `result` is of type [ListDevicesAutomaticLocationUpdates](./
|
|
7319
|
+
- `listDevicesAutomaticLocationUpdatesParameters` is of type [ListDevicesAutomaticLocationUpdatesParameters](./definitions/ListDevicesAutomaticLocationUpdatesParameters.ts)
|
|
7320
|
+
- `result` is of type [ListDevicesAutomaticLocationUpdates](./definitions/ListDevicesAutomaticLocationUpdates.ts)
|
|
7321
7321
|
|
|
7322
7322
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-listDevicesAutomaticLocationUpdates) in API Explorer.
|
|
7323
7323
|
|
|
@@ -7341,7 +7341,7 @@ await rc.revoke();
|
|
|
7341
7341
|
|
|
7342
7342
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7343
7343
|
- Parameter `accountId` is optional with default value `~`
|
|
7344
|
-
- `assignMultipleDevicesAutomaticLocationUpdates` is of type [AssignMultipleDevicesAutomaticLocationUpdates](./
|
|
7344
|
+
- `assignMultipleDevicesAutomaticLocationUpdates` is of type [AssignMultipleDevicesAutomaticLocationUpdates](./definitions/AssignMultipleDevicesAutomaticLocationUpdates.ts)
|
|
7345
7345
|
- `result` is an empty string
|
|
7346
7346
|
|
|
7347
7347
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-assignMultipleDevicesAutomaticLocationUpdates) in API Explorer.
|
|
@@ -7366,8 +7366,8 @@ await rc.revoke();
|
|
|
7366
7366
|
|
|
7367
7367
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7368
7368
|
- Parameter `accountId` is optional with default value `~`
|
|
7369
|
-
- `listNetworksParameters` is of type [ListNetworksParameters](./
|
|
7370
|
-
- `result` is of type [NetworksList](./
|
|
7369
|
+
- `listNetworksParameters` is of type [ListNetworksParameters](./definitions/ListNetworksParameters.ts)
|
|
7370
|
+
- `result` is of type [NetworksList](./definitions/NetworksList.ts)
|
|
7371
7371
|
|
|
7372
7372
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-listNetworks) in API Explorer.
|
|
7373
7373
|
|
|
@@ -7391,8 +7391,8 @@ await rc.revoke();
|
|
|
7391
7391
|
|
|
7392
7392
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7393
7393
|
- Parameter `accountId` is optional with default value `~`
|
|
7394
|
-
- `createNetworkRequest` is of type [CreateNetworkRequest](./
|
|
7395
|
-
- `result` is of type [NetworkInfo](./
|
|
7394
|
+
- `createNetworkRequest` is of type [CreateNetworkRequest](./definitions/CreateNetworkRequest.ts)
|
|
7395
|
+
- `result` is of type [NetworkInfo](./definitions/NetworkInfo.ts)
|
|
7396
7396
|
|
|
7397
7397
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-createNetwork) in API Explorer.
|
|
7398
7398
|
|
|
@@ -7416,7 +7416,7 @@ await rc.revoke();
|
|
|
7416
7416
|
|
|
7417
7417
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7418
7418
|
- Parameter `accountId` is optional with default value `~`
|
|
7419
|
-
- `result` is of type [NetworkInfo](./
|
|
7419
|
+
- `result` is of type [NetworkInfo](./definitions/NetworkInfo.ts)
|
|
7420
7420
|
|
|
7421
7421
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-readNetwork) in API Explorer.
|
|
7422
7422
|
|
|
@@ -7440,8 +7440,8 @@ await rc.revoke();
|
|
|
7440
7440
|
|
|
7441
7441
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7442
7442
|
- Parameter `accountId` is optional with default value `~`
|
|
7443
|
-
- `updateNetworkRequest` is of type [UpdateNetworkRequest](./
|
|
7444
|
-
- `result` is of type [NetworkInfo](./
|
|
7443
|
+
- `updateNetworkRequest` is of type [UpdateNetworkRequest](./definitions/UpdateNetworkRequest.ts)
|
|
7444
|
+
- `result` is of type [NetworkInfo](./definitions/NetworkInfo.ts)
|
|
7445
7445
|
|
|
7446
7446
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-updateNetwork) in API Explorer.
|
|
7447
7447
|
|
|
@@ -7489,8 +7489,8 @@ await rc.revoke();
|
|
|
7489
7489
|
|
|
7490
7490
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7491
7491
|
- Parameter `accountId` is optional with default value `~`
|
|
7492
|
-
- `listAccountSwitchesParameters` is of type [ListAccountSwitchesParameters](./
|
|
7493
|
-
- `result` is of type [SwitchesList](./
|
|
7492
|
+
- `listAccountSwitchesParameters` is of type [ListAccountSwitchesParameters](./definitions/ListAccountSwitchesParameters.ts)
|
|
7493
|
+
- `result` is of type [SwitchesList](./definitions/SwitchesList.ts)
|
|
7494
7494
|
|
|
7495
7495
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-listAccountSwitches) in API Explorer.
|
|
7496
7496
|
|
|
@@ -7514,8 +7514,8 @@ await rc.revoke();
|
|
|
7514
7514
|
|
|
7515
7515
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7516
7516
|
- Parameter `accountId` is optional with default value `~`
|
|
7517
|
-
- `createSwitchInfo` is of type [CreateSwitchInfo](./
|
|
7518
|
-
- `result` is of type [SwitchInfo](./
|
|
7517
|
+
- `createSwitchInfo` is of type [CreateSwitchInfo](./definitions/CreateSwitchInfo.ts)
|
|
7518
|
+
- `result` is of type [SwitchInfo](./definitions/SwitchInfo.ts)
|
|
7519
7519
|
|
|
7520
7520
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-createSwitch) in API Explorer.
|
|
7521
7521
|
|
|
@@ -7539,7 +7539,7 @@ await rc.revoke();
|
|
|
7539
7539
|
|
|
7540
7540
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7541
7541
|
- Parameter `accountId` is optional with default value `~`
|
|
7542
|
-
- `result` is of type [SwitchInfo](./
|
|
7542
|
+
- `result` is of type [SwitchInfo](./definitions/SwitchInfo.ts)
|
|
7543
7543
|
|
|
7544
7544
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-readSwitch) in API Explorer.
|
|
7545
7545
|
|
|
@@ -7563,8 +7563,8 @@ await rc.revoke();
|
|
|
7563
7563
|
|
|
7564
7564
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7565
7565
|
- Parameter `accountId` is optional with default value `~`
|
|
7566
|
-
- `updateSwitchInfo` is of type [UpdateSwitchInfo](./
|
|
7567
|
-
- `result` is of type [SwitchInfo](./
|
|
7566
|
+
- `updateSwitchInfo` is of type [UpdateSwitchInfo](./definitions/UpdateSwitchInfo.ts)
|
|
7567
|
+
- `result` is of type [SwitchInfo](./definitions/SwitchInfo.ts)
|
|
7568
7568
|
|
|
7569
7569
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-updateSwitch) in API Explorer.
|
|
7570
7570
|
|
|
@@ -7612,8 +7612,8 @@ await rc.revoke();
|
|
|
7612
7612
|
|
|
7613
7613
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7614
7614
|
- Parameter `accountId` is optional with default value `~`
|
|
7615
|
-
- `createMultipleSwitchesRequest` is of type [CreateMultipleSwitchesRequest](./
|
|
7616
|
-
- `result` is of type [CreateMultipleSwitchesResponse](./
|
|
7615
|
+
- `createMultipleSwitchesRequest` is of type [CreateMultipleSwitchesRequest](./definitions/CreateMultipleSwitchesRequest.ts)
|
|
7616
|
+
- `result` is of type [CreateMultipleSwitchesResponse](./definitions/CreateMultipleSwitchesResponse.ts)
|
|
7617
7617
|
|
|
7618
7618
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-createMultipleSwitches) in API Explorer.
|
|
7619
7619
|
|
|
@@ -7637,8 +7637,8 @@ await rc.revoke();
|
|
|
7637
7637
|
|
|
7638
7638
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7639
7639
|
- Parameter `accountId` is optional with default value `~`
|
|
7640
|
-
- `updateMultipleSwitchesRequest` is of type [UpdateMultipleSwitchesRequest](./
|
|
7641
|
-
- `result` is of type [UpdateMultipleSwitchesResponse](./
|
|
7640
|
+
- `updateMultipleSwitchesRequest` is of type [UpdateMultipleSwitchesRequest](./definitions/UpdateMultipleSwitchesRequest.ts)
|
|
7641
|
+
- `result` is of type [UpdateMultipleSwitchesResponse](./definitions/UpdateMultipleSwitchesResponse.ts)
|
|
7642
7642
|
|
|
7643
7643
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-updateMultipleSwitches) in API Explorer.
|
|
7644
7644
|
|
|
@@ -7662,8 +7662,8 @@ await rc.revoke();
|
|
|
7662
7662
|
|
|
7663
7663
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7664
7664
|
- Parameter `accountId` is optional with default value `~`
|
|
7665
|
-
- `validateMultipleSwitchesRequest` is of type [ValidateMultipleSwitchesRequest](./
|
|
7666
|
-
- `result` is of type [ValidateMultipleSwitchesResponse](./
|
|
7665
|
+
- `validateMultipleSwitchesRequest` is of type [ValidateMultipleSwitchesRequest](./definitions/ValidateMultipleSwitchesRequest.ts)
|
|
7666
|
+
- `result` is of type [ValidateMultipleSwitchesResponse](./definitions/ValidateMultipleSwitchesResponse.ts)
|
|
7667
7667
|
|
|
7668
7668
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-validateMultipleSwitches) in API Explorer.
|
|
7669
7669
|
|
|
@@ -7687,7 +7687,7 @@ await rc.revoke();
|
|
|
7687
7687
|
|
|
7688
7688
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7689
7689
|
- Parameter `accountId` is optional with default value `~`
|
|
7690
|
-
- `emergencyAddressAutoUpdateUsersBulkAssignResource` is of type [EmergencyAddressAutoUpdateUsersBulkAssignResource](./
|
|
7690
|
+
- `emergencyAddressAutoUpdateUsersBulkAssignResource` is of type [EmergencyAddressAutoUpdateUsersBulkAssignResource](./definitions/EmergencyAddressAutoUpdateUsersBulkAssignResource.ts)
|
|
7691
7691
|
- `result` is an empty string
|
|
7692
7692
|
|
|
7693
7693
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-assignMultipleAutomaticLocationUpdatesUsers) in API Explorer.
|
|
@@ -7713,8 +7713,8 @@ await rc.revoke();
|
|
|
7713
7713
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7714
7714
|
- Parameter `accountId` is optional with default value `~`
|
|
7715
7715
|
- Parameter `extensionId` is optional with default value `~`
|
|
7716
|
-
- `listContactsParameters` is of type [ListContactsParameters](./
|
|
7717
|
-
- `result` is of type [ContactList](./
|
|
7716
|
+
- `listContactsParameters` is of type [ListContactsParameters](./definitions/ListContactsParameters.ts)
|
|
7717
|
+
- `result` is of type [ContactList](./definitions/ContactList.ts)
|
|
7718
7718
|
|
|
7719
7719
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-listContacts) in API Explorer.
|
|
7720
7720
|
|
|
@@ -7739,9 +7739,9 @@ await rc.revoke();
|
|
|
7739
7739
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7740
7740
|
- Parameter `accountId` is optional with default value `~`
|
|
7741
7741
|
- Parameter `extensionId` is optional with default value `~`
|
|
7742
|
-
- `personalContactRequest` is of type [PersonalContactRequest](./
|
|
7743
|
-
- `createContactParameters` is of type [CreateContactParameters](./
|
|
7744
|
-
- `result` is of type [PersonalContactResource](./
|
|
7742
|
+
- `personalContactRequest` is of type [PersonalContactRequest](./definitions/PersonalContactRequest.ts)
|
|
7743
|
+
- `createContactParameters` is of type [CreateContactParameters](./definitions/CreateContactParameters.ts)
|
|
7744
|
+
- `result` is of type [PersonalContactResource](./definitions/PersonalContactResource.ts)
|
|
7745
7745
|
|
|
7746
7746
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-createContact) in API Explorer.
|
|
7747
7747
|
|
|
@@ -7766,7 +7766,7 @@ await rc.revoke();
|
|
|
7766
7766
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7767
7767
|
- Parameter `accountId` is optional with default value `~`
|
|
7768
7768
|
- Parameter `extensionId` is optional with default value `~`
|
|
7769
|
-
- `result` is of type [PersonalContactResource](./
|
|
7769
|
+
- `result` is of type [PersonalContactResource](./definitions/PersonalContactResource.ts)
|
|
7770
7770
|
|
|
7771
7771
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-readContact) in API Explorer.
|
|
7772
7772
|
|
|
@@ -7791,9 +7791,9 @@ await rc.revoke();
|
|
|
7791
7791
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7792
7792
|
- Parameter `accountId` is optional with default value `~`
|
|
7793
7793
|
- Parameter `extensionId` is optional with default value `~`
|
|
7794
|
-
- `personalContactRequest` is of type [PersonalContactRequest](./
|
|
7795
|
-
- `updateContactParameters` is of type [UpdateContactParameters](./
|
|
7796
|
-
- `result` is of type [PersonalContactResource](./
|
|
7794
|
+
- `personalContactRequest` is of type [PersonalContactRequest](./definitions/PersonalContactRequest.ts)
|
|
7795
|
+
- `updateContactParameters` is of type [UpdateContactParameters](./definitions/UpdateContactParameters.ts)
|
|
7796
|
+
- `result` is of type [PersonalContactResource](./definitions/PersonalContactResource.ts)
|
|
7797
7797
|
|
|
7798
7798
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-updateContact) in API Explorer.
|
|
7799
7799
|
|
|
@@ -7843,9 +7843,9 @@ await rc.revoke();
|
|
|
7843
7843
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7844
7844
|
- Parameter `accountId` is optional with default value `~`
|
|
7845
7845
|
- Parameter `extensionId` is optional with default value `~`
|
|
7846
|
-
- `personalContactRequest` is of type [PersonalContactRequest](./
|
|
7847
|
-
- `patchContactParameters` is of type [PatchContactParameters](./
|
|
7848
|
-
- `result` is of type [PersonalContactResource](./
|
|
7846
|
+
- `personalContactRequest` is of type [PersonalContactRequest](./definitions/PersonalContactRequest.ts)
|
|
7847
|
+
- `patchContactParameters` is of type [PatchContactParameters](./definitions/PatchContactParameters.ts)
|
|
7848
|
+
- `result` is of type [PersonalContactResource](./definitions/PersonalContactResource.ts)
|
|
7849
7849
|
|
|
7850
7850
|
[Try it out](https://developer.ringcentral.com/api-reference#External-Contacts-patchContact) in API Explorer.
|
|
7851
7851
|
|
|
@@ -7895,8 +7895,8 @@ await rc.revoke();
|
|
|
7895
7895
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7896
7896
|
- Parameter `accountId` is optional with default value `~`
|
|
7897
7897
|
- Parameter `extensionId` is optional with default value `~`
|
|
7898
|
-
- `businessSiteCollectionRequest` is of type [BusinessSiteCollectionRequest](./
|
|
7899
|
-
- `result` is of type [BusinessSiteCollectionResource](./
|
|
7898
|
+
- `businessSiteCollectionRequest` is of type [BusinessSiteCollectionRequest](./definitions/BusinessSiteCollectionRequest.ts)
|
|
7899
|
+
- `result` is of type [BusinessSiteCollectionResource](./definitions/BusinessSiteCollectionResource.ts)
|
|
7900
7900
|
|
|
7901
7901
|
[Try it out](https://developer.ringcentral.com/api-reference#Site-Administration-updateUserAdministeredSites) in API Explorer.
|
|
7902
7902
|
|
|
@@ -7921,8 +7921,8 @@ await rc.revoke();
|
|
|
7921
7921
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7922
7922
|
- Parameter `accountId` is optional with default value `~`
|
|
7923
7923
|
- Parameter `extensionId` is optional with default value `~`
|
|
7924
|
-
- `checkUserPermissionParameters` is of type [CheckUserPermissionParameters](./
|
|
7925
|
-
- `result` is of type [AuthProfileCheckResource](./
|
|
7924
|
+
- `checkUserPermissionParameters` is of type [CheckUserPermissionParameters](./definitions/CheckUserPermissionParameters.ts)
|
|
7925
|
+
- `result` is of type [AuthProfileCheckResource](./definitions/AuthProfileCheckResource.ts)
|
|
7926
7926
|
|
|
7927
7927
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Permissions-checkUserPermission) in API Explorer.
|
|
7928
7928
|
|
|
@@ -7947,8 +7947,8 @@ await rc.revoke();
|
|
|
7947
7947
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7948
7948
|
- Parameter `accountId` is optional with default value `~`
|
|
7949
7949
|
- Parameter `extensionId` is optional with default value `~`
|
|
7950
|
-
- `readExtensionCallQueuePresenceParameters` is of type [ReadExtensionCallQueuePresenceParameters](./
|
|
7951
|
-
- `result` is of type [ExtensionCallQueuePresenceList](./
|
|
7950
|
+
- `readExtensionCallQueuePresenceParameters` is of type [ReadExtensionCallQueuePresenceParameters](./definitions/ReadExtensionCallQueuePresenceParameters.ts)
|
|
7951
|
+
- `result` is of type [ExtensionCallQueuePresenceList](./definitions/ExtensionCallQueuePresenceList.ts)
|
|
7952
7952
|
|
|
7953
7953
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-readExtensionCallQueuePresence) in API Explorer.
|
|
7954
7954
|
|
|
@@ -7973,8 +7973,8 @@ await rc.revoke();
|
|
|
7973
7973
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
7974
7974
|
- Parameter `accountId` is optional with default value `~`
|
|
7975
7975
|
- Parameter `extensionId` is optional with default value `~`
|
|
7976
|
-
- `extensionCallQueueUpdatePresenceList` is of type [ExtensionCallQueueUpdatePresenceList](./
|
|
7977
|
-
- `result` is of type [ExtensionCallQueuePresenceList](./
|
|
7976
|
+
- `extensionCallQueueUpdatePresenceList` is of type [ExtensionCallQueueUpdatePresenceList](./definitions/ExtensionCallQueueUpdatePresenceList.ts)
|
|
7977
|
+
- `result` is of type [ExtensionCallQueuePresenceList](./definitions/ExtensionCallQueuePresenceList.ts)
|
|
7978
7978
|
|
|
7979
7979
|
[Try it out](https://developer.ringcentral.com/api-reference#Presence-updateExtensionCallQueuePresence) in API Explorer.
|
|
7980
7980
|
|
|
@@ -7999,8 +7999,8 @@ await rc.revoke();
|
|
|
7999
7999
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8000
8000
|
- Parameter `accountId` is optional with default value `~`
|
|
8001
8001
|
- Parameter `extensionId` is optional with default value `~`
|
|
8002
|
-
- `getExtensionEmergencyLocationsParameters` is of type [GetExtensionEmergencyLocationsParameters](./
|
|
8003
|
-
- `result` is of type [EmergencyLocationsResource](./
|
|
8002
|
+
- `getExtensionEmergencyLocationsParameters` is of type [GetExtensionEmergencyLocationsParameters](./definitions/GetExtensionEmergencyLocationsParameters.ts)
|
|
8003
|
+
- `result` is of type [EmergencyLocationsResource](./definitions/EmergencyLocationsResource.ts)
|
|
8004
8004
|
|
|
8005
8005
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-getExtensionEmergencyLocations) in API Explorer.
|
|
8006
8006
|
|
|
@@ -8025,8 +8025,8 @@ await rc.revoke();
|
|
|
8025
8025
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8026
8026
|
- Parameter `accountId` is optional with default value `~`
|
|
8027
8027
|
- Parameter `extensionId` is optional with default value `~`
|
|
8028
|
-
- `createUserEmergencyLocationRequest` is of type [CreateUserEmergencyLocationRequest](./
|
|
8029
|
-
- `result` is of type [EmergencyLocationResource](./
|
|
8028
|
+
- `createUserEmergencyLocationRequest` is of type [CreateUserEmergencyLocationRequest](./definitions/CreateUserEmergencyLocationRequest.ts)
|
|
8029
|
+
- `result` is of type [EmergencyLocationResource](./definitions/EmergencyLocationResource.ts)
|
|
8030
8030
|
|
|
8031
8031
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-createExtensionEmergencyLocation) in API Explorer.
|
|
8032
8032
|
|
|
@@ -8051,7 +8051,7 @@ await rc.revoke();
|
|
|
8051
8051
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8052
8052
|
- Parameter `accountId` is optional with default value `~`
|
|
8053
8053
|
- Parameter `extensionId` is optional with default value `~`
|
|
8054
|
-
- `result` is of type [EmergencyLocationResource](./
|
|
8054
|
+
- `result` is of type [EmergencyLocationResource](./definitions/EmergencyLocationResource.ts)
|
|
8055
8055
|
|
|
8056
8056
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-getExtensionEmergencyLocation) in API Explorer.
|
|
8057
8057
|
|
|
@@ -8076,8 +8076,8 @@ await rc.revoke();
|
|
|
8076
8076
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8077
8077
|
- Parameter `accountId` is optional with default value `~`
|
|
8078
8078
|
- Parameter `extensionId` is optional with default value `~`
|
|
8079
|
-
- `emergencyLocationResource` is of type [EmergencyLocationResource](./
|
|
8080
|
-
- `result` is of type [EmergencyLocationResource](./
|
|
8079
|
+
- `emergencyLocationResource` is of type [EmergencyLocationResource](./definitions/EmergencyLocationResource.ts)
|
|
8080
|
+
- `result` is of type [EmergencyLocationResource](./definitions/EmergencyLocationResource.ts)
|
|
8081
8081
|
|
|
8082
8082
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-updateExtensionEmergencyLocation) in API Explorer.
|
|
8083
8083
|
|
|
@@ -8102,7 +8102,7 @@ await rc.revoke();
|
|
|
8102
8102
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8103
8103
|
- Parameter `accountId` is optional with default value `~`
|
|
8104
8104
|
- Parameter `extensionId` is optional with default value `~`
|
|
8105
|
-
- `deleteExtensionEmergencyLocationParameters` is of type [DeleteExtensionEmergencyLocationParameters](./
|
|
8105
|
+
- `deleteExtensionEmergencyLocationParameters` is of type [DeleteExtensionEmergencyLocationParameters](./definitions/DeleteExtensionEmergencyLocationParameters.ts)
|
|
8106
8106
|
- `result` is an empty string
|
|
8107
8107
|
|
|
8108
8108
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-deleteExtensionEmergencyLocation) in API Explorer.
|
|
@@ -8128,8 +8128,8 @@ await rc.revoke();
|
|
|
8128
8128
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8129
8129
|
- Parameter `accountId` is optional with default value `~`
|
|
8130
8130
|
- Parameter `extensionId` is optional with default value `~`
|
|
8131
|
-
- `listUserMeetingRecordingsParameters` is of type [ListUserMeetingRecordingsParameters](./
|
|
8132
|
-
- `result` is of type [ListMeetingRecordingsResponse](./
|
|
8131
|
+
- `listUserMeetingRecordingsParameters` is of type [ListUserMeetingRecordingsParameters](./definitions/ListUserMeetingRecordingsParameters.ts)
|
|
8132
|
+
- `result` is of type [ListMeetingRecordingsResponse](./definitions/ListMeetingRecordingsResponse.ts)
|
|
8133
8133
|
|
|
8134
8134
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Recordings-listUserMeetingRecordings) in API Explorer.
|
|
8135
8135
|
|
|
@@ -8153,7 +8153,7 @@ await rc.revoke();
|
|
|
8153
8153
|
|
|
8154
8154
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8155
8155
|
- Parameter `accountId` is optional with default value `~`
|
|
8156
|
-
- `result` is of type [MessageStoreReportArchive](./
|
|
8156
|
+
- `result` is of type [MessageStoreReportArchive](./definitions/MessageStoreReportArchive.ts)
|
|
8157
8157
|
|
|
8158
8158
|
[Try it out](https://developer.ringcentral.com/api-reference#Message-Exports-readMessageStoreReportArchive) in API Explorer.
|
|
8159
8159
|
|
|
@@ -8206,7 +8206,7 @@ await rc.revoke();
|
|
|
8206
8206
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8207
8207
|
- Parameter `accountId` is optional with default value `~`
|
|
8208
8208
|
- Parameter `extensionId` is optional with default value `~`
|
|
8209
|
-
- `result` is of type [AssignedRolesResource](./
|
|
8209
|
+
- `result` is of type [AssignedRolesResource](./definitions/AssignedRolesResource.ts)
|
|
8210
8210
|
|
|
8211
8211
|
[Try it out](https://developer.ringcentral.com/api-reference#Role-Management-assignDefaultRole) in API Explorer.
|
|
8212
8212
|
|
|
@@ -8231,7 +8231,7 @@ await rc.revoke();
|
|
|
8231
8231
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8232
8232
|
- Parameter `accountId` is optional with default value `~`
|
|
8233
8233
|
- Parameter `extensionId` is optional with default value `~`
|
|
8234
|
-
- `createUserMeetingProfileImageRequest` is of type [CreateUserMeetingProfileImageRequest](./
|
|
8234
|
+
- `createUserMeetingProfileImageRequest` is of type [CreateUserMeetingProfileImageRequest](./definitions/CreateUserMeetingProfileImageRequest.ts)
|
|
8235
8235
|
- `result` is an empty string
|
|
8236
8236
|
|
|
8237
8237
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Configuration-createUserMeetingProfileImage) in API Explorer.
|
|
@@ -8257,7 +8257,7 @@ await rc.revoke();
|
|
|
8257
8257
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8258
8258
|
- Parameter `accountId` is optional with default value `~`
|
|
8259
8259
|
- Parameter `extensionId` is optional with default value `~`
|
|
8260
|
-
- `result` is of type [MeetingServiceInfoResource](./
|
|
8260
|
+
- `result` is of type [MeetingServiceInfoResource](./definitions/MeetingServiceInfoResource.ts)
|
|
8261
8261
|
|
|
8262
8262
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Configuration-readMeetingServiceInfo) in API Explorer.
|
|
8263
8263
|
|
|
@@ -8282,8 +8282,8 @@ await rc.revoke();
|
|
|
8282
8282
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8283
8283
|
- Parameter `accountId` is optional with default value `~`
|
|
8284
8284
|
- Parameter `extensionId` is optional with default value `~`
|
|
8285
|
-
- `meetingServiceInfoRequest` is of type [MeetingServiceInfoRequest](./
|
|
8286
|
-
- `result` is of type [MeetingServiceInfoResource](./
|
|
8285
|
+
- `meetingServiceInfoRequest` is of type [MeetingServiceInfoRequest](./definitions/MeetingServiceInfoRequest.ts)
|
|
8286
|
+
- `result` is of type [MeetingServiceInfoResource](./definitions/MeetingServiceInfoResource.ts)
|
|
8287
8287
|
|
|
8288
8288
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Configuration-updateMeetingServiceInfo) in API Explorer.
|
|
8289
8289
|
|
|
@@ -8308,7 +8308,7 @@ await rc.revoke();
|
|
|
8308
8308
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8309
8309
|
- Parameter `accountId` is optional with default value `~`
|
|
8310
8310
|
- Parameter `extensionId` is optional with default value `~`
|
|
8311
|
-
- `readMessageContentParameters` is of type [ReadMessageContentParameters](./
|
|
8311
|
+
- `readMessageContentParameters` is of type [ReadMessageContentParameters](./definitions/ReadMessageContentParameters.ts)
|
|
8312
8312
|
- `result` is of type `byte[]`
|
|
8313
8313
|
|
|
8314
8314
|
### ❗❗❗ Code sample above may not work
|
|
@@ -8338,7 +8338,7 @@ await rc.revoke();
|
|
|
8338
8338
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8339
8339
|
- Parameter `accountId` is optional with default value `~`
|
|
8340
8340
|
- Parameter `extensionId` is optional with default value `~`
|
|
8341
|
-
- `result` is of type [UserVideoConfiguration](./
|
|
8341
|
+
- `result` is of type [UserVideoConfiguration](./definitions/UserVideoConfiguration.ts)
|
|
8342
8342
|
|
|
8343
8343
|
[Try it out](https://developer.ringcentral.com/api-reference#Video-Configuration-readUserVideoConfiguration) in API Explorer.
|
|
8344
8344
|
|
|
@@ -8363,8 +8363,8 @@ await rc.revoke();
|
|
|
8363
8363
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8364
8364
|
- Parameter `accountId` is optional with default value `~`
|
|
8365
8365
|
- Parameter `extensionId` is optional with default value `~`
|
|
8366
|
-
- `userVideoConfiguration` is of type [UserVideoConfiguration](./
|
|
8367
|
-
- `result` is of type [UserVideoConfiguration](./
|
|
8366
|
+
- `userVideoConfiguration` is of type [UserVideoConfiguration](./definitions/UserVideoConfiguration.ts)
|
|
8367
|
+
- `result` is of type [UserVideoConfiguration](./definitions/UserVideoConfiguration.ts)
|
|
8368
8368
|
|
|
8369
8369
|
[Try it out](https://developer.ringcentral.com/api-reference#Video-Configuration-updateUserVideoConfiguration) in API Explorer.
|
|
8370
8370
|
|
|
@@ -8388,7 +8388,7 @@ await rc.revoke();
|
|
|
8388
8388
|
|
|
8389
8389
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8390
8390
|
- Parameter `accountId` is optional with default value `~`
|
|
8391
|
-
- `editPagingGroupRequest` is of type [EditPagingGroupRequest](./
|
|
8391
|
+
- `editPagingGroupRequest` is of type [EditPagingGroupRequest](./definitions/EditPagingGroupRequest.ts)
|
|
8392
8392
|
- `result` is an empty string
|
|
8393
8393
|
|
|
8394
8394
|
[Try it out](https://developer.ringcentral.com/api-reference#Paging-Only-Groups-assignMultiplePagingGroupUsersDevices) in API Explorer.
|
|
@@ -8413,7 +8413,7 @@ await rc.revoke();
|
|
|
8413
8413
|
|
|
8414
8414
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8415
8415
|
- Parameter `accountId` is optional with default value `~`
|
|
8416
|
-
- `result` is of type [AutomaticLocationUpdatesTaskInfo](./
|
|
8416
|
+
- `result` is of type [AutomaticLocationUpdatesTaskInfo](./definitions/AutomaticLocationUpdatesTaskInfo.ts)
|
|
8417
8417
|
|
|
8418
8418
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-readAutomaticLocationUpdatesTask) in API Explorer.
|
|
8419
8419
|
|
|
@@ -8437,8 +8437,8 @@ await rc.revoke();
|
|
|
8437
8437
|
|
|
8438
8438
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8439
8439
|
- Parameter `accountId` is optional with default value `~`
|
|
8440
|
-
- `listAutomaticLocationUpdatesUsersParameters` is of type [ListAutomaticLocationUpdatesUsersParameters](./
|
|
8441
|
-
- `result` is of type [AutomaticLocationUpdatesUserList](./
|
|
8440
|
+
- `listAutomaticLocationUpdatesUsersParameters` is of type [ListAutomaticLocationUpdatesUsersParameters](./definitions/ListAutomaticLocationUpdatesUsersParameters.ts)
|
|
8441
|
+
- `result` is of type [AutomaticLocationUpdatesUserList](./definitions/AutomaticLocationUpdatesUserList.ts)
|
|
8442
8442
|
|
|
8443
8443
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-listAutomaticLocationUpdatesUsers) in API Explorer.
|
|
8444
8444
|
|
|
@@ -8462,8 +8462,8 @@ await rc.revoke();
|
|
|
8462
8462
|
|
|
8463
8463
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8464
8464
|
- Parameter `accountId` is optional with default value `~`
|
|
8465
|
-
- `listWirelessPointsParameters` is of type [ListWirelessPointsParameters](./
|
|
8466
|
-
- `result` is of type [WirelessPointsList](./
|
|
8465
|
+
- `listWirelessPointsParameters` is of type [ListWirelessPointsParameters](./definitions/ListWirelessPointsParameters.ts)
|
|
8466
|
+
- `result` is of type [WirelessPointsList](./definitions/WirelessPointsList.ts)
|
|
8467
8467
|
|
|
8468
8468
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-listWirelessPoints) in API Explorer.
|
|
8469
8469
|
|
|
@@ -8487,8 +8487,8 @@ await rc.revoke();
|
|
|
8487
8487
|
|
|
8488
8488
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8489
8489
|
- Parameter `accountId` is optional with default value `~`
|
|
8490
|
-
- `createWirelessPoint` is of type [CreateWirelessPoint](./
|
|
8491
|
-
- `result` is of type [WirelessPointInfo](./
|
|
8490
|
+
- `createWirelessPoint` is of type [CreateWirelessPoint](./definitions/CreateWirelessPoint.ts)
|
|
8491
|
+
- `result` is of type [WirelessPointInfo](./definitions/WirelessPointInfo.ts)
|
|
8492
8492
|
|
|
8493
8493
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-createWirelessPoint) in API Explorer.
|
|
8494
8494
|
|
|
@@ -8512,7 +8512,7 @@ await rc.revoke();
|
|
|
8512
8512
|
|
|
8513
8513
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8514
8514
|
- Parameter `accountId` is optional with default value `~`
|
|
8515
|
-
- `result` is of type [WirelessPointInfo](./
|
|
8515
|
+
- `result` is of type [WirelessPointInfo](./definitions/WirelessPointInfo.ts)
|
|
8516
8516
|
|
|
8517
8517
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-readWirelessPoint) in API Explorer.
|
|
8518
8518
|
|
|
@@ -8536,8 +8536,8 @@ await rc.revoke();
|
|
|
8536
8536
|
|
|
8537
8537
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8538
8538
|
- Parameter `accountId` is optional with default value `~`
|
|
8539
|
-
- `updateWirelessPoint` is of type [UpdateWirelessPoint](./
|
|
8540
|
-
- `result` is of type [WirelessPointInfo](./
|
|
8539
|
+
- `updateWirelessPoint` is of type [UpdateWirelessPoint](./definitions/UpdateWirelessPoint.ts)
|
|
8540
|
+
- `result` is of type [WirelessPointInfo](./definitions/WirelessPointInfo.ts)
|
|
8541
8541
|
|
|
8542
8542
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-updateWirelessPoint) in API Explorer.
|
|
8543
8543
|
|
|
@@ -8586,7 +8586,7 @@ await rc.revoke();
|
|
|
8586
8586
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8587
8587
|
- Parameter `accountId` is optional with default value `~`
|
|
8588
8588
|
- Parameter `extensionId` is optional with default value `~`
|
|
8589
|
-
- `result` is of type [MeetingUserSettingsResponse](./
|
|
8589
|
+
- `result` is of type [MeetingUserSettingsResponse](./definitions/MeetingUserSettingsResponse.ts)
|
|
8590
8590
|
|
|
8591
8591
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Configuration-getUserSetting) in API Explorer.
|
|
8592
8592
|
|
|
@@ -8611,7 +8611,7 @@ await rc.revoke();
|
|
|
8611
8611
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8612
8612
|
- Parameter `accountId` is optional with default value `~`
|
|
8613
8613
|
- Parameter `extensionId` is optional with default value `~`
|
|
8614
|
-
- `result` is of type [NotificationSettings](./
|
|
8614
|
+
- `result` is of type [NotificationSettings](./definitions/NotificationSettings.ts)
|
|
8615
8615
|
|
|
8616
8616
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-readNotificationSettings) in API Explorer.
|
|
8617
8617
|
|
|
@@ -8636,8 +8636,8 @@ await rc.revoke();
|
|
|
8636
8636
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8637
8637
|
- Parameter `accountId` is optional with default value `~`
|
|
8638
8638
|
- Parameter `extensionId` is optional with default value `~`
|
|
8639
|
-
- `notificationSettingsUpdateRequest` is of type [NotificationSettingsUpdateRequest](./
|
|
8640
|
-
- `result` is of type [NotificationSettings](./
|
|
8639
|
+
- `notificationSettingsUpdateRequest` is of type [NotificationSettingsUpdateRequest](./definitions/NotificationSettingsUpdateRequest.ts)
|
|
8640
|
+
- `result` is of type [NotificationSettings](./definitions/NotificationSettings.ts)
|
|
8641
8641
|
|
|
8642
8642
|
[Try it out](https://developer.ringcentral.com/api-reference#User-Settings-updateNotificationSettings) in API Explorer.
|
|
8643
8643
|
|
|
@@ -8661,8 +8661,8 @@ await rc.revoke();
|
|
|
8661
8661
|
|
|
8662
8662
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8663
8663
|
- Parameter `accountId` is optional with default value `~`
|
|
8664
|
-
- `addPartyRequest` is of type [AddPartyRequest](./
|
|
8665
|
-
- `result` is of type [CallParty](./
|
|
8664
|
+
- `addPartyRequest` is of type [AddPartyRequest](./definitions/AddPartyRequest.ts)
|
|
8665
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
8666
8666
|
|
|
8667
8667
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-createCallPartyWithBringIn) in API Explorer.
|
|
8668
8668
|
|
|
@@ -8686,8 +8686,8 @@ await rc.revoke();
|
|
|
8686
8686
|
|
|
8687
8687
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8688
8688
|
- Parameter `accountId` is optional with default value `~`
|
|
8689
|
-
- `answerTarget` is of type [AnswerTarget](./
|
|
8690
|
-
- `result` is of type [CallParty](./
|
|
8689
|
+
- `answerTarget` is of type [AnswerTarget](./definitions/AnswerTarget.ts)
|
|
8690
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
8691
8691
|
|
|
8692
8692
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-answerCallParty) in API Explorer.
|
|
8693
8693
|
|
|
@@ -8711,8 +8711,8 @@ await rc.revoke();
|
|
|
8711
8711
|
|
|
8712
8712
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8713
8713
|
- Parameter `accountId` is optional with default value `~`
|
|
8714
|
-
- `bridgeTargetRequest` is of type [BridgeTargetRequest](./
|
|
8715
|
-
- `result` is of type [CallParty](./
|
|
8714
|
+
- `bridgeTargetRequest` is of type [BridgeTargetRequest](./definitions/BridgeTargetRequest.ts)
|
|
8715
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
8716
8716
|
|
|
8717
8717
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-bridgeCallParty) in API Explorer.
|
|
8718
8718
|
|
|
@@ -8736,7 +8736,7 @@ await rc.revoke();
|
|
|
8736
8736
|
|
|
8737
8737
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8738
8738
|
- Parameter `accountId` is optional with default value `~`
|
|
8739
|
-
- `callPartyFlip` is of type [CallPartyFlip](./
|
|
8739
|
+
- `callPartyFlip` is of type [CallPartyFlip](./definitions/CallPartyFlip.ts)
|
|
8740
8740
|
- `result` is an empty string
|
|
8741
8741
|
|
|
8742
8742
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-callFlipParty) in API Explorer.
|
|
@@ -8761,8 +8761,8 @@ await rc.revoke();
|
|
|
8761
8761
|
|
|
8762
8762
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8763
8763
|
- Parameter `accountId` is optional with default value `~`
|
|
8764
|
-
- `forwardTarget` is of type [ForwardTarget](./
|
|
8765
|
-
- `result` is of type [CallParty](./
|
|
8764
|
+
- `forwardTarget` is of type [ForwardTarget](./definitions/ForwardTarget.ts)
|
|
8765
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
8766
8766
|
|
|
8767
8767
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-forwardCallParty) in API Explorer.
|
|
8768
8768
|
|
|
@@ -8786,7 +8786,7 @@ await rc.revoke();
|
|
|
8786
8786
|
|
|
8787
8787
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8788
8788
|
- Parameter `accountId` is optional with default value `~`
|
|
8789
|
-
- `result` is of type [CallParty](./
|
|
8789
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
8790
8790
|
|
|
8791
8791
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-holdCallParty) in API Explorer.
|
|
8792
8792
|
|
|
@@ -8810,7 +8810,7 @@ await rc.revoke();
|
|
|
8810
8810
|
|
|
8811
8811
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8812
8812
|
- Parameter `accountId` is optional with default value `~`
|
|
8813
|
-
- `result` is of type [CallParty](./
|
|
8813
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
8814
8814
|
|
|
8815
8815
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-callParkParty) in API Explorer.
|
|
8816
8816
|
|
|
@@ -8858,8 +8858,8 @@ await rc.revoke();
|
|
|
8858
8858
|
|
|
8859
8859
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8860
8860
|
- Parameter `accountId` is optional with default value `~`
|
|
8861
|
-
- `createMultipleWirelessPointsRequest` is of type [CreateMultipleWirelessPointsRequest](./
|
|
8862
|
-
- `result` is of type [CreateMultipleWirelessPointsResponse](./
|
|
8861
|
+
- `createMultipleWirelessPointsRequest` is of type [CreateMultipleWirelessPointsRequest](./definitions/CreateMultipleWirelessPointsRequest.ts)
|
|
8862
|
+
- `result` is of type [CreateMultipleWirelessPointsResponse](./definitions/CreateMultipleWirelessPointsResponse.ts)
|
|
8863
8863
|
|
|
8864
8864
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-createMultipleWirelessPoints) in API Explorer.
|
|
8865
8865
|
|
|
@@ -8883,8 +8883,8 @@ await rc.revoke();
|
|
|
8883
8883
|
|
|
8884
8884
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8885
8885
|
- Parameter `accountId` is optional with default value `~`
|
|
8886
|
-
- `updateMultipleWirelessPointsRequest` is of type [UpdateMultipleWirelessPointsRequest](./
|
|
8887
|
-
- `result` is of type [UpdateMultipleWirelessPointsResponse](./
|
|
8886
|
+
- `updateMultipleWirelessPointsRequest` is of type [UpdateMultipleWirelessPointsRequest](./definitions/UpdateMultipleWirelessPointsRequest.ts)
|
|
8887
|
+
- `result` is of type [UpdateMultipleWirelessPointsResponse](./definitions/UpdateMultipleWirelessPointsResponse.ts)
|
|
8888
8888
|
|
|
8889
8889
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-updateMultipleWirelessPoints) in API Explorer.
|
|
8890
8890
|
|
|
@@ -8908,8 +8908,8 @@ await rc.revoke();
|
|
|
8908
8908
|
|
|
8909
8909
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8910
8910
|
- Parameter `accountId` is optional with default value `~`
|
|
8911
|
-
- `validateMultipleWirelessPointsRequest` is of type [ValidateMultipleWirelessPointsRequest](./
|
|
8912
|
-
- `result` is of type [ValidateMultipleWirelessPointsResponse](./
|
|
8911
|
+
- `validateMultipleWirelessPointsRequest` is of type [ValidateMultipleWirelessPointsRequest](./definitions/ValidateMultipleWirelessPointsRequest.ts)
|
|
8912
|
+
- `result` is of type [ValidateMultipleWirelessPointsResponse](./definitions/ValidateMultipleWirelessPointsResponse.ts)
|
|
8913
8913
|
|
|
8914
8914
|
[Try it out](https://developer.ringcentral.com/api-reference#Automatic-Location-Updates-validateMultipleWirelessPoints) in API Explorer.
|
|
8915
8915
|
|
|
@@ -8934,8 +8934,8 @@ await rc.revoke();
|
|
|
8934
8934
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8935
8935
|
- Parameter `accountId` is optional with default value `~`
|
|
8936
8936
|
- Parameter `extensionId` is optional with default value `~`
|
|
8937
|
-
- `listBlockedAllowedNumbersParameters` is of type [ListBlockedAllowedNumbersParameters](./
|
|
8938
|
-
- `result` is of type [BlockedAllowedPhoneNumbersList](./
|
|
8937
|
+
- `listBlockedAllowedNumbersParameters` is of type [ListBlockedAllowedNumbersParameters](./definitions/ListBlockedAllowedNumbersParameters.ts)
|
|
8938
|
+
- `result` is of type [BlockedAllowedPhoneNumbersList](./definitions/BlockedAllowedPhoneNumbersList.ts)
|
|
8939
8939
|
|
|
8940
8940
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Blocking-listBlockedAllowedNumbers) in API Explorer.
|
|
8941
8941
|
|
|
@@ -8960,8 +8960,8 @@ await rc.revoke();
|
|
|
8960
8960
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8961
8961
|
- Parameter `accountId` is optional with default value `~`
|
|
8962
8962
|
- Parameter `extensionId` is optional with default value `~`
|
|
8963
|
-
- `addBlockedAllowedPhoneNumber` is of type [AddBlockedAllowedPhoneNumber](./
|
|
8964
|
-
- `result` is of type [BlockedAllowedPhoneNumberInfo](./
|
|
8963
|
+
- `addBlockedAllowedPhoneNumber` is of type [AddBlockedAllowedPhoneNumber](./definitions/AddBlockedAllowedPhoneNumber.ts)
|
|
8964
|
+
- `result` is of type [BlockedAllowedPhoneNumberInfo](./definitions/BlockedAllowedPhoneNumberInfo.ts)
|
|
8965
8965
|
|
|
8966
8966
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Blocking-createBlockedAllowedNumber) in API Explorer.
|
|
8967
8967
|
|
|
@@ -8986,7 +8986,7 @@ await rc.revoke();
|
|
|
8986
8986
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
8987
8987
|
- Parameter `accountId` is optional with default value `~`
|
|
8988
8988
|
- Parameter `extensionId` is optional with default value `~`
|
|
8989
|
-
- `result` is of type [BlockedAllowedPhoneNumberInfo](./
|
|
8989
|
+
- `result` is of type [BlockedAllowedPhoneNumberInfo](./definitions/BlockedAllowedPhoneNumberInfo.ts)
|
|
8990
8990
|
|
|
8991
8991
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Blocking-readBlockedAllowedNumber) in API Explorer.
|
|
8992
8992
|
|
|
@@ -9011,8 +9011,8 @@ await rc.revoke();
|
|
|
9011
9011
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9012
9012
|
- Parameter `accountId` is optional with default value `~`
|
|
9013
9013
|
- Parameter `extensionId` is optional with default value `~`
|
|
9014
|
-
- `addBlockedAllowedPhoneNumber` is of type [AddBlockedAllowedPhoneNumber](./
|
|
9015
|
-
- `result` is of type [BlockedAllowedPhoneNumberInfo](./
|
|
9014
|
+
- `addBlockedAllowedPhoneNumber` is of type [AddBlockedAllowedPhoneNumber](./definitions/AddBlockedAllowedPhoneNumber.ts)
|
|
9015
|
+
- `result` is of type [BlockedAllowedPhoneNumberInfo](./definitions/BlockedAllowedPhoneNumberInfo.ts)
|
|
9016
9016
|
|
|
9017
9017
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Blocking-updateBlockedAllowedNumber) in API Explorer.
|
|
9018
9018
|
|
|
@@ -9062,7 +9062,7 @@ await rc.revoke();
|
|
|
9062
9062
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9063
9063
|
- Parameter `accountId` is optional with default value `~`
|
|
9064
9064
|
- Parameter `extensionId` is optional with default value `~`
|
|
9065
|
-
- `result` is of type [AssistantsResource](./
|
|
9065
|
+
- `result` is of type [AssistantsResource](./definitions/AssistantsResource.ts)
|
|
9066
9066
|
|
|
9067
9067
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Configuration-readAssistants) in API Explorer.
|
|
9068
9068
|
|
|
@@ -9087,7 +9087,7 @@ await rc.revoke();
|
|
|
9087
9087
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9088
9088
|
- Parameter `accountId` is optional with default value `~`
|
|
9089
9089
|
- Parameter `extensionId` is optional with default value `~`
|
|
9090
|
-
- `result` is of type [AssistedUsersResource](./
|
|
9090
|
+
- `result` is of type [AssistedUsersResource](./definitions/AssistedUsersResource.ts)
|
|
9091
9091
|
|
|
9092
9092
|
[Try it out](https://developer.ringcentral.com/api-reference#Meeting-Configuration-readAssistedUsers) in API Explorer.
|
|
9093
9093
|
|
|
@@ -9111,7 +9111,7 @@ await rc.revoke();
|
|
|
9111
9111
|
|
|
9112
9112
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9113
9113
|
- Parameter `accountId` is optional with default value `~`
|
|
9114
|
-
- `ignoreRequestBody` is of type [IgnoreRequestBody](./
|
|
9114
|
+
- `ignoreRequestBody` is of type [IgnoreRequestBody](./definitions/IgnoreRequestBody.ts)
|
|
9115
9115
|
- `result` is an empty string
|
|
9116
9116
|
|
|
9117
9117
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-ignoreCallInQueue) in API Explorer.
|
|
@@ -9136,8 +9136,8 @@ await rc.revoke();
|
|
|
9136
9136
|
|
|
9137
9137
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9138
9138
|
- Parameter `accountId` is optional with default value `~`
|
|
9139
|
-
- `pickupTarget` is of type [PickupTarget](./
|
|
9140
|
-
- `result` is of type [CallParty](./
|
|
9139
|
+
- `pickupTarget` is of type [PickupTarget](./definitions/PickupTarget.ts)
|
|
9140
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
9141
9141
|
|
|
9142
9142
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-pickupCallParty) in API Explorer.
|
|
9143
9143
|
|
|
@@ -9233,9 +9233,9 @@ await rc.revoke();
|
|
|
9233
9233
|
|
|
9234
9234
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9235
9235
|
- Parameter `accountId` is optional with default value `~`
|
|
9236
|
-
- `callRecordingUpdate` is of type [CallRecordingUpdate](./
|
|
9237
|
-
- `pauseResumeCallRecordingParameters` is of type [PauseResumeCallRecordingParameters](./
|
|
9238
|
-
- `result` is of type [CallRecording](./
|
|
9236
|
+
- `callRecordingUpdate` is of type [CallRecordingUpdate](./definitions/CallRecordingUpdate.ts)
|
|
9237
|
+
- `pauseResumeCallRecordingParameters` is of type [PauseResumeCallRecordingParameters](./definitions/PauseResumeCallRecordingParameters.ts)
|
|
9238
|
+
- `result` is of type [CallRecording](./definitions/CallRecording.ts)
|
|
9239
9239
|
|
|
9240
9240
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-pauseResumeCallRecording) in API Explorer.
|
|
9241
9241
|
|
|
@@ -9283,8 +9283,8 @@ await rc.revoke();
|
|
|
9283
9283
|
|
|
9284
9284
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9285
9285
|
- Parameter `accountId` is optional with default value `~`
|
|
9286
|
-
- `callPartyReply` is of type [CallPartyReply](./
|
|
9287
|
-
- `result` is of type [ReplyParty](./
|
|
9286
|
+
- `callPartyReply` is of type [CallPartyReply](./definitions/CallPartyReply.ts)
|
|
9287
|
+
- `result` is of type [ReplyParty](./definitions/ReplyParty.ts)
|
|
9288
9288
|
|
|
9289
9289
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-replyParty) in API Explorer.
|
|
9290
9290
|
|
|
@@ -9308,8 +9308,8 @@ await rc.revoke();
|
|
|
9308
9308
|
|
|
9309
9309
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9310
9310
|
- Parameter `accountId` is optional with default value `~`
|
|
9311
|
-
- `partySuperviseRequest` is of type [PartySuperviseRequest](./
|
|
9312
|
-
- `result` is of type [PartySuperviseResponse](./
|
|
9311
|
+
- `partySuperviseRequest` is of type [PartySuperviseRequest](./definitions/PartySuperviseRequest.ts)
|
|
9312
|
+
- `result` is of type [PartySuperviseResponse](./definitions/PartySuperviseResponse.ts)
|
|
9313
9313
|
|
|
9314
9314
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-superviseCallParty) in API Explorer.
|
|
9315
9315
|
|
|
@@ -9333,8 +9333,8 @@ await rc.revoke();
|
|
|
9333
9333
|
|
|
9334
9334
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9335
9335
|
- Parameter `accountId` is optional with default value `~`
|
|
9336
|
-
- `transferTarget` is of type [TransferTarget](./
|
|
9337
|
-
- `result` is of type [CallParty](./
|
|
9336
|
+
- `transferTarget` is of type [TransferTarget](./definitions/TransferTarget.ts)
|
|
9337
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
9338
9338
|
|
|
9339
9339
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-transferCallParty) in API Explorer.
|
|
9340
9340
|
|
|
@@ -9358,6 +9358,6 @@ await rc.revoke();
|
|
|
9358
9358
|
|
|
9359
9359
|
- Parameter `apiVersion` is optional with default value `v1.0`
|
|
9360
9360
|
- Parameter `accountId` is optional with default value `~`
|
|
9361
|
-
- `result` is of type [CallParty](./
|
|
9361
|
+
- `result` is of type [CallParty](./definitions/CallParty.ts)
|
|
9362
9362
|
|
|
9363
9363
|
[Try it out](https://developer.ringcentral.com/api-reference#Call-Control-unholdCallParty) in API Explorer.
|