1.1.6 • Published 8 years ago

ytx-rest-api v1.1.6

Weekly downloads
10
License
MIT
Repository
github
Last release
8 years ago

Install

npm install ytx-rest-api --save

Example

var ytx=require("ytx-rest-api");
//
var appId='aaf98f895453453454b8a7e41c54';
var accountSid='aaf98f895495435345454a8adf5711c23';
var authToken='b504d0a235345435386249c0566';
ytx.init(appId, accountSid, authToken);
//
ytx.api('GetSubAccounts', {startNo:0, offset:10}, function(err, result) {
    //……
});
ytx.api('Calls/VoiceVerify', {to:'13817353235', verifyCode:'1234'}, function(err, result) {
    //……
});