Skip to content

Instantly share code, notes, and snippets.

@IbrahimTareq
Last active June 17, 2018 23:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IbrahimTareq/a191e61fc645f8916e347f8c1733a6cd to your computer and use it in GitHub Desktop.
Save IbrahimTareq/a191e61fc645f8916e347f8c1733a6cd to your computer and use it in GitHub Desktop.
Code snippet on how to provision an account using the MessageMedia Conversations Node.js SDK.
const lib = require('messagemedia-conversations-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.ConfigurationController;
var request = new lib.ConfigureAccountRequest({
"name": "Rainbow Serpent Festival",
"callback_url": "https://callback.url.com"
});
controller.createConfigureAccount(request, function(error, response, context) {
console.log(error);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment