Exemplo n.º 1
0
 /// <summary>
 ///     Returns corporate map of configured network switches with the assigned emergency addresses for the logged-in
 ///     account.
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/account/{accountId}/emergency-address-auto-update/switches
 ///     Rate Limit Group: Heavy
 ///     App Permission: EditAccounts
 ///     User Permission: ConfigureEmergencyMaps
 /// </summary>
 public async Task <SwitchesList> List(ListAccountSwitchesParameters queryParams = null,
                                       RestRequestConfig restRequestConfig       = null)
 {
     return(await rc.Get <SwitchesList>(Path(false), queryParams, restRequestConfig));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Operation: Get Account Switch List
 /// HTTP Method: GET
 /// Endpoint: /restapi/v1.0/account/{accountId}/emergency-address-auto-update/switches
 /// Rate Limit Group: Heavy
 /// App Permission: EditAccounts
 /// User Permission: ConfigureEmergencyMaps
 /// </summary>
 public async Task <RingCentral.SwitchesList> List(ListAccountSwitchesParameters queryParams = null,
                                                   CancellationToken?cancellationToken       = null)
 {
     return(await rc.Get <RingCentral.SwitchesList>(this.Path(false), queryParams, cancellationToken));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Operation: Get Account Switch List
 /// Http Get /restapi/v1.0/account/{accountId}/emergency-address-auto-update/switches
 /// </summary>
 public async Task <RingCentral.SwitchesList> List(ListAccountSwitchesParameters queryParams = null)
 {
     return(await rc.Get <RingCentral.SwitchesList>(this.Path(false), queryParams));
 }