The MessageMedia Webhooks allows you to subscribe to one or several events and when one of those events is triggered, an HTTP request is sent to the URL of your choice along with the message or payload. In simpler terms, it allows applications to "speak" to one another and get notified automatically when something new happens.
Authentication is done via API keys. Sign up at https://developers.messagemedia.com/register/ to get your API keys.
Requests are authenticated using HTTP Basic Auth or HMAC. Provide your API key as the auth_user_name and API secret as the auth_password.
Our API returns standard HTTP success or error status codes. For errors, we will also include extra information about what went wrong encoded in the response as JSON. The most common status codes are listed below.
Code | Title | Description |
---|---|---|
400 | Invalid Request | The request was invalid |
401 | Unauthorized | Your API credentials are invalid |
403 | Disabled feature | Feature not enabled |
404 | Not Found | The resource does not exist |
50X | Internal Server Error | An error occurred with our API |
If you have any questions, comments, or concerns, please join our Slack channel: https://developers.messagemedia.com/collaborate/slack/
Alternatively you can email us at: [email protected]
If you discover a problem with the SDK, we would like to know about it. You can raise an issue or send an email to: [email protected]
We welcome your thoughts on how we could best provide you with SDKs that would simplify how you consume our services in your application. You can fork and create pull requests for any features you would like to see or raise an issue
Now install messagemedia-messages-sdk via npm by using:
npm install messagemedia-webhooks-sdk
Alternatively, add the following to the dependencies section of your package.json:
"messagemedia-webhooks-sdk": "^1.0.0"
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.
const lib = require('messagemedia-webhooks-sdk');
// Configuration parameters and credentials
lib.Configuration.basicAuthUserName = "API_KEY"; // The username to use with basic authentication
lib.Configuration.basicAuthPassword = "API_SECRET"; // The password to use with basic authentication
var controller = lib.WebhooksController;
var body = new lib.CreateWebhookRequest({
"url": "http://webhook.com",
"method": "POST",
"encoding": "JSON",
"events": [
"RECEIVED_SMS"
],
"template": "{\"id\":\"$mtId\",\"status\":\"$statusCode\"}"
});
controller.createWebhook(body, function(error, response, context) {
console.log(response);
});
const lib = require('messagemedia-webhooks-sdk');
// Configuration parameters and credentials
lib.Configuration.basicAuthUserName = "API_KEY"; // The username to use with basic authentication
lib.Configuration.basicAuthPassword = "API_SECRET"; // The password to use with basic authentication
var controller = lib.WebhooksController;
var page = 0;
var pageSize = 0;
controller.retrieveWebhook(page, pageSize, function(error, response, context) {
console.log(response);
});
You can get a webhook ID by looking at the id
of each webhook created from the response of the above example.
const lib = require('messagemedia-webhooks-sdk');
// Configuration parameters and credentials
lib.Configuration.basicAuthUserName = "API_KEY"; // The username to use with basic authentication
lib.Configuration.basicAuthPassword = "API_SECRET"; // The password to use with basic authentication
var controller = lib.WebhooksController;
var webhookId = "WEBHOOK_ID";
var body = new lib.UpdateWebhookRequest({
"url": "https://myurl.com",
"method": "POST",
"encoding": "FORM_ENCODED",
"events": [
"ENROUTE_DR"
],
"template": "{\"id\":\"$mtId\", \"status\":\"$statusCode\"}"
});
controller.updateWebhook(webhookId, body, function(error, response, context) {
console.log(response);
});
You can get a webhook ID by looking at the id
of each webhook created from the response of the retrieve webhooks example.
const lib = require('messagemedia-webhooks-sdk');
// Configuration parameters and credentials
lib.Configuration.basicAuthUserName = "API_KEY"; // The username to use with basic authentication
lib.Configuration.basicAuthPassword = "API_SECRET"; // The password to use with basic authentication
var controller = lib.WebhooksController;
var webhookId = "WEBHOOK_ID";
controller.deleteWebhook(webhookId, function(error, response, context) {
console.log(response);
});
Check out the full API documentation for more detailed information.
Please contact developer support at [email protected] or check out the developer portal at developers.messagemedia.com
Apache License. See the LICENSE file.