Introduction
Getting Started
System Requirements
Installation
npm i sellapp-nodeUsage
const Sellapp = require("sellapp-node");
const API = new Sellapp.API("YOUR_API_KEY");
API.products.getAllProducts().then((res) => {
console.log(res); // returns a list of all products
});
API.blacklists.createBlacklist("email", "hi@example.com", "evil user").then((res) => {
console.log(res); // blacklisting the said user with the string "evil user" as description
});Last updated