0.2.2 • Published 11 years ago

telapi v0.2.2

Weekly downloads
46
License
-
Repository
github
Last release
11 years ago

telapi-nodejs

This node.js library is an open source tool built to simplify interaction with the TelAPI telephony platform. TelAPI makes adding voice and SMS to applications fun and easy.

For more information about TelAPI, please visit: telapi.com/features or telapi.com/docs


Installation

Via npm

npm install telapi

Via GitHub clone

Access terminal and run the following code:

	$ cd ~
	$ git clone https://github.com/TelAPI/telapi-nodejs.git telapi-nodejs
    $ npm install ./telapi-nodejs

Usage

REST

TelAPI REST API documenatation

Send SMS Example
var util = require("util");
var Client = require('telapi').client;
 
var client = new Client(
    '********************************', 
    '********************************'
);
 
client.create(
    'sms_messages'
    {
        From : '(XXX) XXX-XXXX',
        To   : '(XXX) XXX-XXXX',
        Body : 'SMS message sent from the TelAPI Node.JS helper!'
    },
    function(response) {
        util.log(
            "SmsMessage SID: " +  response.sid
        );
    },
    function(error) {
        util.log("Error: " + error)
    }
); 

InboundXML

InboundXML is an XML dialect which enables you to control phone call flow. For more information please visit the TelAPI InboundXML documenatation

Example
var util = require("util");
 
// Get TelAPI InboundXML helper
var InboundXML = require('telapi').inboundxml;
 
// Initialize TelAPI response element. This is A MUST!
var response = new InboundXML.Response();
 
response.append(
    new InboundXML.Say(
        'Welcome to TelAPI. This is a sample InboundXML document.',
        { voice : 'man'}
    )
);
 
util.log("\n\nInboundXML Say Element: \n\n" + response.toString()) 

will render

<?xml version="1.0" encoding="UTF-8"?>
<Response>
  <Say voice="man">Welcome to TelAPI. This is a sample InboundXML document.</Say>
</Response>

0.2.2

11 years ago

0.2.1

12 years ago

0.2.0

12 years ago

0.1.9

12 years ago

0.1.8

12 years ago

0.1.7

12 years ago

0.1.6

12 years ago

0.1.5

12 years ago

0.1.3

12 years ago

0.1.2

12 years ago

0.1.1

12 years ago