pthm / batch-node

Batch.com lib for Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

batch-node

Batch.com lib for Node.js

npm install batch-node

var batch = require('batch-node')('BATCH_API_KEY', 'BATCH_REST_API_KEY');
batch.sendNotification({
  group_id: 'test',
  recipients: {
    custom_ids: ['123']
  },
  message: {
        "title": "Hello!",
        "body": "How's it going?"
      }
}, function(err, cb){
  console.log(err, cb);
})

About

Batch.com lib for Node.js

License:MIT License


Languages

Language:JavaScript 100.0%