Skip to content

Latest commit

 

History

History
61 lines (53 loc) · 1.93 KB

README.md

File metadata and controls

61 lines (53 loc) · 1.93 KB

Messages API C# Tutorial

Community Twitter

A tutorial to teach users to use RingCentral Messages API. The following topics are included:

  • How to send SMS
  • How to send MMS
  • How to track delivery status of messages
  • How to modify the message's read status.
  • How to delete messages.
  • How to receive and reply to SMS messages

Clone - Setup - Run the project

$ git clone https://github.com/ringcentral-tutorials/sms-api-csharp-demo
$ cd sms-api-csharp-demo
$ open sms-api-csharp-demo.sln

Specify your app client id and client secret as well as account login credentials to the constant defined within the brackets "< >".

How to send SMS

Uncomment the function call below and run the app

//send_sms().Wait();

How to send MMS

Uncomment the function call below and run the app

//send_mms().Wait();

How to track delivery status of messages

Uncomment the function call below and run the app

//track_mms(rc, resp.id, resp.messageStatus).Wait();

How to retrieve and modify message's read status

Uncomment the function call below and run the app

//retrieve_modify().Wait();

How to delete messages

Uncomment the function call below and run the app

//retrieve_delete().Wait();

How to receive and reply to SMS messages

Uncomment the function call below and run the app

//receive_reply().Wait();

RingCentral .Net SDK

The SDK is available at https://github.com/ringcentral/ringcentral.net