# HWID

## HWID

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

This endpoint allows you to manage your users HWID.

#### Query Parameters

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

{% tabs %}
{% tab title="200 Successfully retrieved HWID" %}

```
{"status":"success","value":"S-1-5-21-2059544432-1807619418-2813248941-1001"}
```

{% endtab %}

{% tab title="205 HWID has been reset" %}

```
{"status":"success","info":"HWID has been succesfully reset"}
```

{% endtab %}

{% tab title="302 HWID not set." %}

```
{"status":"fail","info":"Not Set"}
```

{% endtab %}
{% endtabs %}

| Types | Description             |
| ----- | ----------------------- |
| fetch | Retrieves the user HWID |
| reset | Resets the user HWID    |
| set   | Sets the user HWID      |

### Get HWID information

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

### Reset HWID

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

### Set HWID

```
https://developers.auth.gg/HWID/?type=set&authorization=3459877&user=demo&hwid=newhwid
```


---

# 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/hwid.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.
