0.8.4 • Published 6 years ago

netsuite-restlet v0.8.4

Weekly downloads
6
License
ISC
Repository
github
Last release
6 years ago

NetSuite Restlet authentication module

Introduction:

This auxiliary module abstracts the authentication mechanism used by NetSuite Restlets.

Supported authentication methods:

NLAuth (username and password) Token based authentication is not supported yet (work in progress)

Supported Restlet method:

GET (get function) POST (post function) PUT (put function)

Installation

Open a terminal session and enter the following command:

npm install netsuite-restlet --save

Usage

let NetSuiteRestlet = require('netsuite-restlet');

const config = {
  account: 'account ID',
  username: 'NetSuite user email address',
  password: 'NetSuite password'.
  role: 'NetSuite role internal ID'
};

const url = 'https://restleturlhere';
const parameters = {
    internalid: 1
};

let ns = new NetSuiteRestlet(config);

// Example using the get function
ns.get(parameters, url).then((out) => { console.log(out)});
0.8.4

6 years ago

0.8.3

6 years ago

0.8.2

6 years ago

0.8.0

6 years ago