Example #1
0
 /// <summary>
 /// Operation: Get Extension List
 /// Http Get /restapi/v1.0/account/{accountId}/extension
 /// </summary>
 public async Task <RingCentral.GetExtensionListResponse> List(ListExtensionsParameters queryParams = null)
 {
     return(await rc.Get <RingCentral.GetExtensionListResponse>(this.Path(false), queryParams));
 }
Example #2
0
 /// <summary>
 ///     Returns the list of extensions created for a particular account. All types of extensions are included in this list.
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/account/{accountId}/extension
 ///     Rate Limit Group: Medium
 ///     App Permission: ReadAccounts
 ///     User Permission: ReadExtensions
 /// </summary>
 public async Task <GetExtensionListResponse> List(ListExtensionsParameters queryParams = null,
                                                   RestRequestConfig restRequestConfig  = null)
 {
     return(await rc.Get <GetExtensionListResponse>(Path(false), queryParams, restRequestConfig));
 }