Example #1
0
 /// <summary>
 /// Operation: Forward Call Party
 /// HTTP Method: POST
 /// Endpoint: /restapi/v1.0/account/{accountId}/telephony/sessions/{telephonySessionId}/parties/{partyId}/forward
 /// Rate Limit Group: Light
 /// App Permission: CallControl
 /// User Permission: undefined
 /// </summary>
 public async Task <RingCentral.CallParty> Post(RingCentral.ForwardTarget forwardTarget,
                                                CancellationToken?cancellationToken = null)
 {
     return(await rc.Post <RingCentral.CallParty>(this.Path(), forwardTarget, null, cancellationToken));
 }
Example #2
0
 // Operation: Forward Call Party
 // Http Post /restapi/v1.0/account/{accountId}/telephony/sessions/{sessionId}/parties/{partyId}/forward
 public async Task <RingCentral.CallParty> Post(RingCentral.ForwardTarget forwardTarget)
 {
     return(await rc.Post <RingCentral.CallParty>(this.Path(), forwardTarget));
 }
Example #3
0
 /// <summary>
 /// Operation: Forward Call Party
 /// HTTP Method: POST
 /// Endpoint: /restapi/v1.0/account/{accountId}/telephony/sessions/{telephonySessionId}/parties/{partyId}/forward
 /// Rate Limit Group: Light
 /// App Permission: CallControl
 /// User Permission: undefined
 /// </summary>
 public async Task <RingCentral.CallParty> Post(RingCentral.ForwardTarget forwardTarget,
                                                RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Post <RingCentral.CallParty>(this.Path(), forwardTarget, null, restRequestConfig));
 }