0.0.1 • Published 5 years ago

sentinel-api v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Client

const Client = require("sentinel-api");

const client = new Client(<StaffAuthKey>);
// For the Staff Auth Key parameter of the Client Constructor,
// use your own Sentinel Staff Auth Key
// If you don't have one, use "guest"

// Note: Without a Staff Auth Key, you can't access Staff Endpoints

Fetching Ban Information

const banObject = await client.bans.getInfo(<UserID>);
// The above example requires to be run in an async function
    
client.bans.getInfo(<UserID>).then(banObject => { 
  // You can use the banObject here    
});
    
// Note: This endpoint can be accessed by any user and does not 
// require a Staff Auth Key