sellizon-api
v2.0.5
Published
Module for handling the Sellizon online payment api
Downloads
18
Maintainers
Readme
EpicBots
Sellizon is a library that facilitates your online payments
Installation To use the sellizon-api library, you need to install it via npm. Run the following command in your project:
npm install sellizon-api
Utilisation
Here is an example of code showing how to use the Sellizon library:
const sellizon = require('sellizon-api');
// Define the profile ID to search for
let USER_ID = "123456789"
//Make a request to the server to recover information
sellizon.getAmount(USER_ID)
.then(data => {
console.log(data); // Data returned by the getAmount method (float)
})
.catch(error => {
// Manage errors here
console.error(error)
});
Be sure to replace 123456789
with the appropriate value.
You can also contact our support via Discord: https://discord.gg/VMA7BPCshT
Doc
Explore all the possibilities offered by sellizon with our documentation: https://sellizon.gitbook.io/sellizon-api/
Author
sellizon-api is developed and maintained by Millenium is here.
License
This library is licensed under the MIT license. See the LICENSE file for details.