Pipitit allows you to send Push, SMS, Email and WebSocket notifications to your customers.
Register multiple applications and get application key for each one of them. This way Pipitit allows you to target your clients on application premises.
Track the status of each Campaign. Our dashboard allows you to track not only Campaign status, but the status of each message in specific Campaign.
Node.JS SDK
Installing using npm (node package manager):
npm install pipitit-node
Required Dependencies:
Dev Dependencies (for running tests):
var pipitit = require('pipitit-node');
var pipit = pipitit.init({
authId: '<your AUTH ID>',
auth_secret: '<your AUTH SECRET>'
});
pipit.app_create({name: 'test_app'}, function(status, response){
if (status != 200 ){
console.log('ERROR! Didn't create application.');
console.log('Status:', status);
console.log('Response:', response);
} else {
console.log('YEA! Successfully created application.');
console.log('Status:', status);
console.log('Response:', response);
}
})
To run tests:
npm test
or
mocha --reporter spec
pipitit-node is licensed under the MIT License.