Socket
Socket
Sign inDemoInstall

sendinblue-api

Package Overview
Dependencies
7
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sendinblue-api

Official SendinBlue provided API V2 npm library


Version published
Weekly downloads
211
increased by43.54%
Maintainers
1
Install size
1.61 MB
Created
Weekly downloads
 

Readme

Source

SendinBlue npm Library

This is SendinBlue provided API V2 npm library. It implements the various exposed APIs that you can read more about on https://apidocs.sendinblue.com.

SendinBlue API's use HTTP Authentication through an api key. You can create your api key from API Console, after you sign up for an account with SendinBlue. You must use latest version 2.0, access key, for accessing APIs.

Install Package

The following recommended installation requires npm. If you are unfamiliar with npm, see the npm docs.

Our npm package is available here https://www.npmjs.com/package/sendinblue-api

Add the following to your package.json file:

{
  ...
  "dependencies": {
    ...
    "sendinblue-api": "^1.0.0"
  }
}

Install sendinblue-api and its dependencies:

npm install

Alternative Installation

You can also install sendinblue-api locally with the following command:

npm install sendinblue-api

Dependencies

This version of the library depends on Restler 3.2.2

Usage

Assuming that you have installed this package, use below sample script to get started.


	var sendinblue = require('sendinblue-api');

	var parameters = { "apiKey": "your_api_key", "timeout": 5000 };	//Optional parameter: Timeout in MS
	var sendinObj = new sendinblue(parameters);

	var input = {};
	sendinObj.get_account(input, function(err, response){
	     console.log(response);
	});

Support and Feedback

Be sure to visit the SendinBlue official documentation website for additional information about our API.

If you find a bug, please submit the issue in Github directly.

As always, if you need additional assistance, drop us a note here.

Keywords

FAQs

Last updated on 12 Jan 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc