New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

instasent

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

instasent

A Nodejs wrapper library for Instasent's API

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
decreased by-10%
Maintainers
1
Weekly downloads
 
Created
Source

Welcome to Instasent Node.js SDK. This repository contains Instasent's Node.js SDK and samples for REST API.

Installation

$ npm install instasent

Example

Send an SMS

You can check 'examples/send-sms.js' file.

var instasent = require('instasent')('my-token');

instasent.send_sms.create('My company', '+34666666666', 'test message', function (err, response) {
    if (err) {
        return console.log(err.errors);
    }
    console.log(response);
});

Available functions

instasent.send_sms.create(sender, to, text, callback)
instasent.get_sms.read(page, per_page, callback)
instasent.get_sms_by_id.read(message_id, callback)

Documentation

Complete documentation at : http://docs.instasent.com/.

Getting help

If you need help installing or using the library, please contact Instasent Support at support@instasent.com first. If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!

Keywords

FAQs

Package last updated on 25 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc