Account

Information about sub-users

List sub-users

List the available sub-users on your server.

const ptero = require('lmadactyl')
let result = await ptero.client.account.listUsers("https://yourpanel.com", "apikey", "serverid")
console.log(result) //Object
ParameterValue

panelURL (Type STRING)

The link to your pterodactyl panel

apiKey (Type STRING)

Type 1

serverId (Type STRING)

Your server ID. (https://yourpanel.com/server/id)

Account Detail

View your account details.

const ptero = require('lmadactyl')
let result = await ptero.client.account.accountDetail("https://yourpanel.com", "apikey")
console.log(result) //Object
ParameterValue

panelURL (Type STRING)

The link to your pterodactyl panel

apiKey (Type STRING)

Type 1

Update Email

Update your account email

const ptero = require('lmadactyl')
let result = await ptero.client.account.updateEmail("https://yourpanel.com", "apikey", "lmadactyl@lmadactyl.js.org")
console.log(result) //204
ParameterValue

panelURL (Type STRING)

The link to your pterodactyl panel

apiKey (Type STRING)

Type 1

email

Email you want to update

Update password

Update your account password

const ptero = require('lmadactyl')
let result = await ptero.client.account.updatePassword("https://yourpanel.com", "apikey", "oldPassword", "newPassword")
console.log(result) //204
ParameterValue

panelURL (Type STRING)

The link to your pterodactyl panel

apiKey (Type STRING)

Type 1

currentPassword

Your password you are now using on this account

newPassword

New password you want to change

Last updated