Skip to main content

fetch()

This function is used to fetch a user from the database.

Parameters​

ParameterTypeRequiredDescription
userIdstringβœ…The ID of the user.
guildIdstringβœ…The guild ID of the user.
usernamestring❌Username to use if auto_create is enabled

Returns​

Throws​

  • XpFatal - if invalid parameters are provided.

[JS] Example​

const {fetch} = require('simply-xp');

const userId = "326815959358898189";
const guildId = "867999056172052551";
const username = "Abadima";

fetch(userId, guildId, username)
.then(console.log) // Returns the user object
.catch((err) => console.log(err)); // Returns the error