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. HWID

ResetHWID()

The ResetHWID() function can be used for resetting a users HWID.

Arguments

Type

Required

Default

Username

String

True

import PyAuthGG

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

Admin.ResetHWID("xFueY")

Success Response

{
   "Licenses":[
      {
         "token":"XXXXX-XXXXX-XXXXX-XXXXX-XXXXX",
         "rank":"0",
         "used":"1",
         "used_by":"xFueY",
         "days":"31"
      }
   ]
}

Error Response

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

Last updated 4 years ago

Was this helpful?