# Delete template

Permanently delete an event template.

Source: https://statusdashboard.com/docs/api/event-management/templates/delete

`DELETE /app/templates/{id}`

Permanently deletes an org-scoped event template. Requires the `templates` plan feature and `admin` or `event` role.

Deleting a template does not affect events already created from it.

***

## Path parameters
| Parameter | Type          | Description  |
| --------- | ------------- | ------------ |
| `id`      | string (UUID) | Template ID. |

***

## Request
See [API Basics](/docs/api) for required headers.

This endpoint takes no request body.

***

## Sample request
```bash
curl -X DELETE https://api.statusdashboard.com/app/templates/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer bcf847abf5c6:def456"
```

## Sample response
**Status: `204 No Content`**

No response body.

***

## Error responses
| Status | When                                                |
| ------ | --------------------------------------------------- |
| `403`  | Templates feature not enabled or insufficient role. |
| `404`  | Template not found in this organization.            |
