# Delete authorization

**Endpoint:**

<mark style="color:red;">`DELETE`</mark> `https://proxy-seller.com/personal/api/v1/`**`{YourApiKey}`**`/auth/delete`

### **Example**

```
https://proxy-seller.com/personal/api/v1/fj4948ffhg58gh843gh/auth/delete
```

### Path parameters:

<table data-full-width="false"><thead><tr><th width="149">Name</th><th width="259">Value</th><th>Description</th><th data-hidden></th></tr></thead><tbody><tr><td>Authorization</td><td><code>&#x3C;Your_API_Key></code></td><td>Your personal API key (<a href="../../../authorization#get-your-api-keys">how to get</a>)</td><td></td></tr></tbody></table>

### **Request body**

<table><thead><tr><th width="160">Name</th><th width="134">Type</th><th>Description</th></tr></thead><tbody><tr><td>id</td><td>String</td><td>id: Authorization ID (required)</td></tr></tbody></table>

### **Response**

{% tabs %}
{% tab title="200: OK Success response" %}

```json
{
  "status": "success",
  "data": {
    "deleted": true
  },
  "errors": []
}
```

{% endtab %}

{% tab title="200: OK Error response" %}
Authorization **not found**

```json
{
    "status": "error",
    "data": null,
    "errors": [
        {
            "message": "Set exists [id]",
            "code": 0,
            "customData": null
        }
    ]
}
```

{% endtab %}
{% endtabs %}
