Git Product home page Git Product logo

digital3d / messageapi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ringring-cloud/messageapiclient-csharp

0.0 1.0 0.0 15 KB

RingRing provides simple and fast API for sending and receiving text messages (SMS), calls and emails all over the world. We take care of the telecom infrastructure and bring additional services such as Cloud Call Center solutions, Transactional emails, SIP trunking, ..

C# 100.00%

messageapi's Introduction

MessageApi

RingRing provides simple and fast API for sending and receiving text messages (SMS), calls and emails all over the world. We take care of the telecom infrastructure and bring additional services such as Cloud Call Center solutions, Transactional emails, SIP trunking, ..

How to Use

  • Contact us at [email protected], we will create an account for you.
  • Once you have access to your account, you will be able to access to interface at https://portal.ringring.be. Here you will see all account information you need to send real messages through the API.
  • Lastly, download the code source from Github, or look for the 'MessageApi' Nuget package through the NuGet Packet Manager.

Example

class Program
{
    static void Main(string[] args)
    {
        MessageRequest r = new MessageRequest();
        r.ApiKey = "YOUR_ACCESS_KEY";
        r.To = "PHONE_NUMBER"; //Must in format E164 (32496XXYYZZ)
        r.Message = "Hello World !";

        MessageApi m = new MessageApi();
        MessageResponse resp = m.SendMessage(r);

        Console.WriteLine(resp.ResultDescription);

        Console.ReadLine();
    }
}

.Net Version

This example is in .Net Framework 4.5, but you can take this code and use it on a previous version of .Net Framework

Installation

This SDK has a dependencie to NewtonSoft Json (last version), be sure to reference this depedencie or add this one with NuGet Packet Manager

Documentation

http://docs.ringring.be

messageapi's People

Contributors

ringring-cloud avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.