> For the complete documentation index, see [llms.txt](https://pyauthgg.xfuey.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pyauthgg.xfuey.dev/administration/users/changevariable.md).

# ChangeVariable()

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

```python
import PyAuthGG

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

Admin.ChangeVariable("xFueY", "Variable")
```

### Success Response

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

### Error Response

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