# 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
```
