Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

messagemedia-messages-sdk

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

messagemedia-messages-sdk

The MessageMedia Messages API provides a number of endpoints for building powerful two-way messaging applications.

  • 1.0.1
  • npm
  • Socket score

Version published
Weekly downloads
538
decreased by-41.65%
Maintainers
3
Weekly downloads
 
Created
Source

MessageMedia Messages NodeJS SDK

Travis Build Status

The MessageMedia Messages API provides a number of endpoints for building powerful two-way messaging applications.

Installing via NPM

Now install messagemedia-messages-sdk via npm by using:

  • npm install messagemedia-messages-sdk

Alternatively, add the following to the dependencies section of your package.json:

  • "messagemedia-messages-sdk": "^1.0.0"

Get Started

It's easy to get started. Simply enter the API Key and secret you obtained from the MessageMedia Developers Portal into the code snippet below and a mobile number you wish to send to.

Send an SMS

  • Destination numbers (destination_number) should be in the E.164 format. For example, +61491570156.
const sdk = require('messagemedia-messages-sdk');
const controller = sdk.MessagesController;


// Configuration parameters and credentials
sdk.Configuration.basicAuthUserName = "YOUR_API_KEY"; // Your API Key
sdk.Configuration.basicAuthPassword = "YOUR_SECRET_KEY"; // Your Secret Key


var body = new sdk.SendMessagesRequest({
   "messages":[
      {
         "content":"My first message",
         "destination_number":"YOUR_MOBILE_NUMBER",
      }
   ]
});

controller.createSendMessages(body, function(error, response, context) {
  console.log(response)
});

Get Status of a Message

You can get a messsage ID from a sent message by looking at the message_id from the response of the above example.

const sdk = require('messagemedia-messages-sdk');
const controller = sdk.MessagesController;


// Configuration parameters and credentials
sdk.Configuration.basicAuthUserName = "YOUR_API_KEY"; // Your API Key
sdk.Configuration.basicAuthPassword = "YOUR_SECRET_KEY"; // Your Secret Key


var messageId = "YOUR_MESSAGE_ID";

controller.getMessageStatus(messageId, function(error, response, context) {
  console.log(response)
});

Get replies to a message

You can check for replies that are sent to your messages

const sdk = require('messagemedia-messages-sdk');
const controller = sdk.RepliesController;


// Configuration parameters and credentials
sdk.Configuration.basicAuthUserName = "YOUR_API_KEY"; // Your API Key
sdk.Configuration.basicAuthPassword = "YOUR_API_SECRET"; // Your Secret Key


var messageId = "YOUR_MESSAGE_ID";

controller.getCheckReplies(function(error, response, context) {
  console.log(response)
});

Check Delivery Reports

This endpoint allows you to check for delivery reports to inbound and outbound messages.

const sdk = require('messagemedia-messages-sdk');
const controller = sdk.DeliveryReportsController;


// Configuration parameters and credentials
sdk.Configuration.basicAuthUserName = "YOUR_API_KEY"; // Your API Key
sdk.Configuration.basicAuthPassword = "YOUR_API_SECRET"; // Your Secret Key


controller.getCheckDeliveryReports(function(error, response, context) {
  console.log(response)
});

Documentation

The NodeJS SDK Documentation can be viewed here

Got Stuck?

Please contact developer support at developers@messagemedia.com or check out the developer portal at developers.messagemedia.com

Keywords

FAQs

Package last updated on 29 Jan 2018

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