> For the complete documentation index, see [llms.txt](https://developer.perculus.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.perculus.com/v2-en/services/user-management/user-delete.md).

# Deleting a User

**Example request:**

{% tabs %}
{% tab title="CURL" %}

```bash
curl -L -X DELETE 'https://<DOMAIN>/api/groups/xapi/user/:USER_GUID'
```

{% endtab %}

{% tab title="Python" %}

```python
client.users.delete_by_user_id("6D9D158D-5A41-4FE5-A151-DE008BC978DE");
```

{% endtab %}
{% endtabs %}

**Example response:**

A successful delete operation will return `204 No Content` without any body.
