Beispiel #1
0
 /// <summary>
 /// Operation: Reply with Text
 /// HTTP Method: POST
 /// Endpoint: /restapi/v1.0/account/{accountId}/telephony/sessions/{telephonySessionId}/parties/{partyId}/reply
 /// Rate Limit Group: Light
 /// App Permission: CallControl
 /// User Permission: undefined
 /// </summary>
 public async Task <RingCentral.ReplyParty> Post(RingCentral.CallPartyReply callPartyReply,
                                                 RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Post <RingCentral.ReplyParty>(this.Path(), callPartyReply, null, restRequestConfig));
 }
Beispiel #2
0
 /// <summary>
 /// Operation: Reply with Text
 /// Http Post /restapi/v1.0/account/{accountId}/telephony/sessions/{telephonySessionId}/parties/{partyId}/reply
 /// </summary>
 public async Task <RingCentral.ReplyParty> Post(RingCentral.CallPartyReply callPartyReply)
 {
     return(await rc.Post <RingCentral.ReplyParty>(this.Path(), callPartyReply));
 }
Beispiel #3
0
 /// <summary>
 /// Operation: Reply with Text
 /// HTTP Method: POST
 /// Endpoint: /restapi/v1.0/account/{accountId}/telephony/sessions/{telephonySessionId}/parties/{partyId}/reply
 /// Rate Limit Group: Light
 /// App Permission: CallControl
 /// User Permission: undefined
 /// </summary>
 public async Task <RingCentral.ReplyParty> Post(RingCentral.CallPartyReply callPartyReply,
                                                 CancellationToken?cancellationToken = null)
 {
     return(await rc.Post <RingCentral.ReplyParty>(this.Path(), callPartyReply, null, cancellationToken));
 }