Questions tagged [ringcentral]

For developer questions related to using RingCentral Developer Platform API, SDKs, client libraries, sample apps, and other programming tasks.

RingCentral provides a unified communications platform with APIs for voice, SMS, team messaging, meetings, and fax. (source)

248 questions
2
votes
1 answer

Is it possible to set the caller id (CID/CLID) to Blocked in RingOut?

I'm using the RingCentral RingOut API and I'm wondering if I can block the caller ID? The RingOut API only shows the phoneNumber property in the request format but RingCentral Online Account Portal can block the caller ID. Is there a way to do…
Grokify
  • 15,092
  • 6
  • 60
  • 81
2
votes
1 answer

How to use the extensionId on RingCentral API with RingOut

I can RingOut successfully requesting: https://platform.ringcentral.com/restapi/v1.0/account/~/extension/~/ring-out But when I want to add the extension id I get a CMN-102 error (Resource for parameter [extensionId] is not found) see request…
SurferJoe
  • 965
  • 1
  • 8
  • 13
2
votes
1 answer

Add phone number to existing RingCentral call forwarding Ring Group

How can a number be appended to an existing RingCentral Ring Group using the REST API? I can't seem to find a way to add a number to a call forwarding RingGroup. I can add it as another forwarding rule, but what I would really like to do is append…
Grokify
  • 15,092
  • 6
  • 60
  • 81
2
votes
2 answers

Error while sending SMS via RingCentral REST API

I have been trying to send SMS by RingCentral REST API, but it sends me an incomplete error, which can't be resolved. My Request JSON, { "to": [{ "phoneNumber": "+xxxxxxxxxxx" }], "from": { "phoneNumber": "+xxxxxxxxxxx" }, "text":…
Harsh Patel
  • 47
  • 1
  • 10
2
votes
1 answer

RingCentral OAuth Sever-Only Password Flow with Ruby's HTTParty

I'm currently trying to write a Data Extraction Application for RingCentral to dump CSVs to AWS as part of a Data Warehousing project. I've reviewed several pieces of their documentation outlining how to authenticate using the Password Flow, but…
2
votes
2 answers

In RingCentral webhook is there a way to differentiate different event filters?

Like for example If I want to listen to both 'eventFilters' => array( "/restapi/v1.0/account/~/extension/~/presence?detailedTelephonyState=true&aggregate=true", …
Bryan Bojorque
  • 168
  • 1
  • 11
2
votes
1 answer

Get Notification on Fax Status Change for FaxOut RingCentral API

I am using RingCentral FaxOut API to submit a fax. The fax status in that response is Queued. Is there any Subscription to get the Updated Fax Status for that Message. RingCentral Blog mentions about getting the latest status using GetMessage call…
Shaan
  • 10,746
  • 1
  • 20
  • 16
2
votes
1 answer

Nuget Package Manager for single project fails to load after adding RingCentralSDK

I'm on VS 2015, targeting .net 4.5.2, my "Nuget Package Manager for Visual Studio" in Extensions and Updates shows 3.4.4.1321. I added all dependencies of RingCentralSDK package…
Thierry_S
  • 1,526
  • 16
  • 25
2
votes
2 answers

PubNub throwing "CryptographicException:Padding is invalid and cannot be removed"

I'm trying to subscribe to a RingCentral service to get notified on new phone calls. I'm using the PubNub C# Nuget package. The notification subscription works fine, and then I connect to PubNub using the following: var pn = new Pubnub("",…
wezten
  • 2,126
  • 3
  • 25
  • 48
2
votes
0 answers

Userscript not running on ajax loaded content. (waitForKeyElements not working)

I have a script that scans a page for phone numbers and adds a link to place a call via VOIP API. It's pretty simple, and works on nearly every page. However it doesn't work on one page that I really want it to run on (unfortunately, the page is…
mulliweht
  • 115
  • 1
  • 1
  • 8
2
votes
2 answers

Curl POST attachment

I need to attach a pdf file form local drive and post it to the API using PHP CURL. Here is the RingCentral FaxOut API Documentation $url = "https://service.ringcentral.com/faxapi.asp"; $data = array( 'Username' => 'XXXXXXXXX', 'Password'…
Navneet Singh
  • 1,218
  • 11
  • 17
2
votes
1 answer

HTTP Post from Excel VBA RingCentral FaxoutAPI

I need help getting this code to work. I'm completely new at programming in VBA as well as anything related to HTTP Post and forms. I've tried to do everything to make it work by reading questions here and following the API help but nothing seems to…
iamlucho
  • 31
  • 2
2
votes
0 answers

Parsing emails for TIFF attachments in C#

I built an email parser that extracts TIFF attachments from emails sent by 2 different fax providers, RingCentral and eFax. The application uses Pop3 to retrieve the email as a text stream and then parse the text to identify the section that…
1
vote
1 answer

Converting Multipart/Form-Data to JSON

I am trying to automate faxing using RingCentral for our environment, and was able to fax one attachment, but don't know how to do multiple in JSON format. I am attempting to write the following multipart/form-data in JSON: POST…
1
vote
1 answer

JSON - RingCentral API - Trying to Fax Multiple Documents

I am trying to automate our faxing process, and got it working. However, I can't seem to figure out how to include multiple attachments. Here is what I have for my request URL and body: URL:…
1 2
3
16 17