# Delete Profile

{% hint style="info" %}
How to delete a user profile
{% endhint %}

{% hint style="warning" %}
Please be aware that this operation can not be undone
{% endhint %}

{% tabs %}
{% tab title="Request" %}
`DELETE https://mburger.cloud/api/profile/delete`

```bash
curl https://mburger.cloud/api/profile/delete
-X DELETE 
-H "Accept: application/json" 
-H "Content-Type: application/x-www-form-urlencoded"
-H "X-MBurger-Token: <token>" 
-H "X-MBurger-Version: 3"
-H "Authorization: Bearer <JWT>"
```

#### Parameters

This API has no parameters.
{% endtab %}

{% tab title="Response" %}

When successful, a HTTP 200 and JSON like this is returned:

```bash
{
  "status_code": 0
}
```

{% endtab %}
{% endtabs %}
