ourvoice-node-sdk-test
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

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-sdk-test --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-sdk-test';

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-sdk-test')

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

// get all groups

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

Readme

Keywords

none

Package Sidebar

Install

npm i ourvoice-node-sdk-test

Weekly Downloads

1

Version

1.0.5

License

ISC

Unpacked Size

61.2 kB

Total Files

57

Last publish

Collaborators

  • bangado