Introduction

If you are using the old API Wrapper which can be found here, We highly suggest you migrate to this wrapper as the old is outdated an unmaintained.

v1.0.0

Getting Started

To get started you will need the following from Sell.App:

  • Sell.app API Key (Get it here)

  • Sell.app store name (optional)

System Requirements

  • npm >=8.3.0

  • node >=16.0.0

Installation

npm i sellapp-node

Usage

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