1.0.0 • Published 1 year ago

ourvoice-bangado v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Ourvoice NodeJS Package

The Ourvoice Node library provides convenient access to the Ourvoice API from applications written in server-side JavaScript.

Documentation

See the API docs.

Installation

Install the package with:

npm install ourvoice-node --save

Usage

The package needs to be configured with your account's secret key which is available in your OurVoice Dashboard. Require it with the key's value:

// TypeScript
import { OurVoice } from "ourvoice-node";

const client = new OurVoice({
  apiKey: "YOUR API KEY TOKEN",
});

// get all groups

client.groups.getGroups().then((groups) => {
  console.log(groups);
});
// JavaScript

const sdk = require("ourvoice-node");

const client = new sdk.OurVoice({
  apiKey: "YOUR API KEY TOKEN",
});

// get all groups

client.groups.getGroups().then((groups) => {
  console.log(groups);
});