RingCentral.Net is the successor of this project. All users are recommended to use RingCentral.Net instead.
- RingCentral.Net on NuGet
- Article: Announcing the New RingCentral SDK for .NET
- Article: RingCentral SDK for .NET Upgrade Guide
RingCentral Developers is a cloud communications platform which can be accessed via more than 70 APIs. The platform's main capabilities include technologies that enable: Voice, SMS/MMS, Fax, Glip Team Messaging, Data and Configurations.
API Reference and APIs Explorer.
RingCentral C# client.
Notice: any issues or questions, please do let me know by creating an issue.
Feel free to ⭐ and 🍴 this repository.
Setup project, authorization and sending fax
Deprecated: Work with .NET 4.5 & WebForm You should not use legacy .NET versions. But if you have to, please watch the video.
Install-Package RingCentral.ClientRingCentral API Reference is where you can find all the endpoints, requests, parameters and all kinds of necessary details.
Please note: as a guest reader, you can only read the basic version of API Reference. Please do login if you want to get information about Advanced API endpoints.
usingRingCentral;rc=newRestClient("clientId","clientSecret");By default the clients talk to sandbox server. If you want production server:
rc=newRestClient("clientId","clientSecret",true);Or you can specify the server url explicitly:
rc=newRestClient("clientId","clientSecret","https://platform.devtest.ringcentral.com");awaitrc.Authorize("username","extension","password");If you use direct number as username, leave extension empty.
By default, there is a background timer calling rc.Refresh() periodically, so the authorization never expires.
But if you would like to call Refresh manually:
rc.AutoRefreshToken=false;When you no longer need a token, don't forget to revoke it: rc.Revoke().
This client library is built around URIs. Please read this part carefully and make sure you get it before continuing.
Let's go to the RingCentral API Reference to find an example.
We can see that the URI pattern is:
/restapi/v1.0/account/{accountId}/extension/{extensionId}/call-log/{callRecordId}
An real example of the URI could be:
/restapi/v1.0/account/~/extension/130829004/call-log/ASsQ3xLOZfrLBwM
Let's map the URI above to code:
rc.Restapi("v1.0").Account("~").Extension("130829004").CallLog("ASsQ3xLOZfrLBwM");It's just a one-to-one mapping:
The default ID for Restapi is v1.0, the default ID for Account and Extension is ~.
We can omit arguments to use default value:
rc.Restapi().Account().Extension("130829004").CallLog("ASsQ3xLOZfrLBwM");You can also break it into multiple lines if you don't like long-chained method calls:
varaccount=rc.Restapi().Account();varextension=account.Extension("130829004");varcallLog=extension.CallLog("ASsQ3xLOZfrLBwM");For example, the following line is for sending fax:
varresponse=awaitextension.Fax().Post(requestBody,attachments);To create the requestBody object, you can define it as following:
varrequestBody=newFaxPath.PostParameters{to=newCallerInfo[]{newCallerInfo{phoneNumber="123456789"}}}Or, you can define it using anonymous types:
varrequestBody=new{to=newobject[]{new{phoneNumber="123456789"}}}Both are OK. The anonymous types approach is shorter while you can take advantages of IDE intellisense with pre-defined types approach. You can choose based on your preferences.
varextension=rc.Restapi().Account().Extension();varcallLogs=awaitextension.CallLog().List(new{direction="Inbound"});Or if you prefer the query parameters as a typed model:
varcallLogs=awaitextension.CallLog().List(newCallLog.ListParameters{direction="Inbound"});All the HTTP calls are by default async, so you should use the await keyword of C#.
varcallLog=awaitextension.CallLog("ASsQ3xLOZfrLBwM").Get();You can inspect the attributes of the returned callLog object because it is a model instead of a string:
Console.WriteLine(callLog.id);Console.WriteLine(callLog.direction);Console.WriteLine(callLog.startTime);varrequestBody=new{text="hello world",from=new{phoneNumber=phoneNumber},to=newobject[]{new{phoneNumber=phoneNumber}}};varresponse=awaitextension.Sms().Post(requestBody);varrequestBody=new{readStatus="Read"};varresponse=awaitextension.MessageStore(messageId).Put(requestBody);varresponse=awaitextension.MessageStore(messageId).Delete();varendpoint=rc.Restapi().Dictionary().Timezone("6").Endpoint();// "/restapi/v1.0/dictionary/timezone/6"varresponse=awaitrc.Get(endpoint);// make http requestvarstatusCode=response.StatusCode;// check status codevarstr=awaitresponse.Content.ReadAsStringAsync();// get response stringThe subscription will renew itself automatically before it expires. In rare cases you might need to renew it manually:
awaitsubscription.Renew();MMS and SMS share the same API endpoint. You can deem MMS as SMS with attachments
try{await ...}catch(FlurlHttpExceptionfhe){stringerrorMessage=fhe.GetResponseString();Console.WriteLine(errorMessage);if(fhe.Call.Response.StatusCode==System.Net.HttpStatusCode.NotFound){Console.WriteLine("The resource doesn't exist");}}RestClientclass has EventHandlerTokenRefreshed, so that every time token refreshed you can get a notificationRestClientclass has EventHandlerAfterHttpCall, so that after every HTTP call you can a notification
The unit test project contains lots of useful code snippets. Such as this test class.
MIT
Ref: dotnet/standard#542
