# 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 %}
