# DeleteAction Method

## Description

Deletes an action.

## HTTP Request

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

## URL Parameters

### id

ID of the action to delete.

Type: `string`

Required: Yes

## Sample Request

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

```http
DELETE /api/Actions/a-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/Actions/a-00000001" \
  -H "Authorization: AccessKey <api key>"
```

{% endtab %}

{% tab title="Python" %}

```python
import skeddly
client = skeddly.Client()
action = client.delete_action("a-12345678")
```

{% endtab %}
{% endtabs %}
