# Disassociates the user with token

### DISASSOCIATES USER WITH TOKEN

## Disassociate the user with the provided Hedera token

<mark style="color:orange;">`PUT`</mark> `/tokens/{tokenId}/dissociate`

Disassociates the user with the provided Hedera token. Only users with the Installer role are allowed to make the request.

#### Path Parameters

| Name                                      | Type   | Description |
| ----------------------------------------- | ------ | ----------- |
| tokenID<mark style="color:red;">\*</mark> | String | Token ID    |

{% tabs %}
{% tab title="200: OK Successful Operation" %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="401: Unauthorized Unauthorized" %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="403: Forbidden Forbidden" %}

```javascript
{
    // Response
}
```

{% endtab %}

{% tab title="500: Internal Server Error Internal Server Error" %}

```javascript
{
    content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
}
```

{% endtab %}
{% endtabs %}
