PyAuthGG
  • PyAuthGG
  • Changelogs
  • Getting Started
  • Administration
    • Administration()
    • Users
      • FetchUser()
      • FetchUsedLicenses()
      • FetchUserCount()
      • FetchUsers()
      • DeleteUser()
      • ChangeVariable()
      • ChangeRank()
      • ChangePassword()
    • Licenses
      • FetchLicense()
      • FetchLicenseCount()
      • DeleteLicense()
      • UnuseLicense()
      • UseLicense()
      • GenerateLicense()
    • HWID
      • FetchHWID()
      • ResetHWID()
      • SetHWID()
  • Application
    • Application()
    • GetHWID()
    • Info()
    • Login()
    • Register()
    • Extend()
    • ForgotPassword()
    • ChangePassword()
    • Log()
  • GitHub Repository
  • PyPI Package
Powered by GitBook
On this page
  • Success Response
  • Error Response

Was this helpful?

  1. Administration
  2. Users

FetchUser()

The FetchUser() function can be used for fetching information about a specific user.

Arguments

Type

Required

Default

Username

String

True

import PyAuthGG

Admin = PyAuthGG.Administration("ADMIN API KEY")

Admin.FetchUser("xFueY")

Success Response

{
   "status":"success",
   "username":"xFueY",
   "email":"xFueY@mail.com",
   "rank":"0",
   "hwid":"XXXXXXXX-XXX-XXXX-XXXX-XXXXXXXXXXXXXX",
   "variable":"Developer",
   "lastlogin":"2020-12-28 08:09:27",
   "lastip":"1.1.1.1",
   "expiry":"2294-03-29 15:30:41"
}

Error Response

{
   "status":"failed",
   "info":"No user found"
}
PreviousUsersNextFetchUsedLicenses()

Last updated 4 years ago

Was this helpful?