@sellix/node-sdk
v1.0.13
Published
Sellix NodeJS SDK
Downloads
305
Readme
Sellix NodeJS SDK
Introduction
Sellix public API for developers to access merchant resources
Requirements
- NodeJS
Installation
Install the package through NPM.
npm i @sellix/node-sdk
Usage
// pass <MERCHANT_NAME> only if you need to be authenticated as an additional store
const sellix = require("@sellix/node-sdk")("<YOUR_API_KEY>", "<MERCHANT_NAME>")
void (async () => {
try {
const products = await sellix.products.list()
} catch (e) {
console.log(e)
}
})()