Warning
This Wrapper is an advanced updated version of the current Sell.app Wrapper that was made and archived in 9/17/2023
by t6c. You can reference this wrapper here.
Note
Because this is a new wrapper for Sell.app it currently supports all Sell.app API endpoints.
Important
- Sell.app API Key (Get it here)
- Sell.app store name (optional)
- npm >=8.3.0
- node >=16.0.0
Important
npm i sellapp-node
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", "[email protected]", "evil user").then((res) => {
console.log(res); // blacklisting the said user with the string "evil user" as description
});
Say you are part of multiple stores and want to access bob.sell.app
, you would pass the slug bob
as your store.
Important