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
$ 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 "< >".
Uncomment the function call below and run the app
//send_sms().Wait();
Uncomment the function call below and run the app
//send_mms().Wait();
Uncomment the function call below and run the app
//track_mms(rc, resp.id, resp.messageStatus).Wait();
Uncomment the function call below and run the app
//retrieve_modify().Wait();
Uncomment the function call below and run the app
//retrieve_delete().Wait();
Uncomment the function call below and run the app
//receive_reply().Wait();
The SDK is available at https://github.com/ringcentral/ringcentral.net