This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

sib-api-v3-typescript
TypeScript icon, indicating that this package has built-in type declarations

2.2.2 • Public • Published

APIv3-typescript-library

SendinBlue's API v3 TypeScript-Node Library

SendinBlue's API exposes the entire SendinBlue features via a standardized programmatic interface. Please refer to the full documentation to learn more.

This is the wrapper for the API. It implements all the features of the API v3. It supports promises.

SendinBlue's API matches the OpenAPI v2 definition. The specification can be downloaded here.

Installation

For Node.js

npm

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

Then install it via:

npm install sib-api-v3-typescript --save

Getting Started

Once you have installed the node module in your project, you can execute the following sample code JS code :

const SibApiV3Sdk = require('sib-api-v3-typescript');

let apiInstance = new SibApiV3Sdk.AccountApi()

// Configure API key authorization: apiKey

apiInstance.setApiKey(SibApiV3Sdk.AccountApiApiKeys.apiKey, 'YOUR API KEY');

apiInstance.getAccount().then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});
const SibApiV3Sdk = require('sib-api-v3-typescript');

let apiInstance = new SibApiV3Sdk.ContactsApi()

// Configure API key authorization: apiKey

apiInstance.setApiKey(SibApiV3Sdk.AccountApiApiKeys.apiKey, 'YOUR API KEY');

let limit = 10; // Number | Number of documents per page
let offset = 0; // Number | Index of the first document of the page

apiInstance.getLists(limit, offset).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
  apiInstance.getAttributes().then(function(data) {
    console.log('API called successfully. Returned data: ' + data);
  }, function(error) {
    console.error(error);
  });

}, function(error) {
  console.error(error);
});

For more examples, refer the Endpoints Guide

Readme

Keywords

none

Package Sidebar

Install

npm i sib-api-v3-typescript

Weekly Downloads

3,857

Version

2.2.2

License

MIT

Unpacked Size

2.41 MB

Total Files

809

Last publish

Collaborators

  • aayush-sib
  • ekta-slit