# Users

## Users

<mark style="color:blue;">`GET`</mark> `https://developers.auth.gg/USERS`

This endpoint allows you to manage your users information.

#### Query Parameters

| Name          | Type   | Description                                             |
| ------------- | ------ | ------------------------------------------------------- |
| rank          | string | New rank to set if applicable                           |
| password      | string | New password to set if applicable                       |
| type          | string | Determines which method                                 |
| authorization | string | Token to track down which application is being managed. |
| user          | string | Username to manage if applicable                        |
| variable      | string | New variable if applicable                              |

{% tabs %}
{% tab title="200 Scroll down for accurate examples and responses" %}

```
```

{% endtab %}
{% endtabs %}

| Types    | Description                               |
| -------- | ----------------------------------------- |
| fetch    | Retrieves specific user data              |
| fetchall | Retrieves all of users data               |
| delete   | Deletes specific user                     |
| editvar  | Edits the user variable for specific user |
| editrank | Edits the user rank for specific user     |
| changepw | Changes the user password                 |
| count    | Displays user count                       |

### Fetch Users' Information

```
https://developers.auth.gg/USERS/?type=fetch&authorization=3459877&user=demo
```

### Fetch all Users

```
https://developers.auth.gg/USERS/?type=fetchall&authorization=3459877
```

### Delete User

```
https://developers.auth.gg/USERS/?type=delete&authorization=3459877&user=demo
```

### Edit user variable

```
https://developers.auth.gg/USERS/?type=editvar&authorization=3459877&user=demo&value=newvariablehere
```

### Edit user rank

```
https://developers.auth.gg/USERS/?type=editrank&authorization=3459877&user=demo&rank=10
```

### Change Password

```
https://developers.auth.gg/USERS/?type=changepw&authorization=3459877&user=demo&password=newpasswordtoset
```

### User Count

```
https://developers.auth.gg/USERS/?type=count&authorization=3459877
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://setup.auth.gg/admin/users.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
