> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/resources/users/deleteuser-method.md).

# DeleteUser Method

## Description

Deletes an existing user.

## HTTP Request

`DELETE https://api.skeddly.com/api/Users/<id>`

## URL Parameters

### id

ID of the user to delete.

Type: `string`

Required: Yes

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

```http
DELETE /api/Users/u-00000001 HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
```

{% endtab %}

{% tab title="Bash" %}

```bash
curl -X DELETE "https://api.skeddly.com/api/Users/u-00000001" \
  -H "Authorization: AccessKey <api key>"
```

{% endtab %}
{% endtabs %}
