# DeleteUser()

| Arguments | Type   | Required | Default |
| --------- | ------ | -------- | ------- |
| Username  | String | True     |         |

```python
import PyAuthGG

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

Admin.FetchUsedLicenses("xFueY")
```

### Success Response

```javascript
{
   "status":"success",
   "info":"User has been deleted"
}
```

### Error Response

```javascript
{
   "status":"failed",
   "info":"No user found"
}
```
