> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nedzo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete template

> Soft-delete a template by UUID via the Nedzo REST API. The template is hidden from list results but not permanently removed from the database.

Soft-delete a template. The template is not permanently removed but will no longer appear in list results.

Returns `204 No Content` on success. Returns `404` if the template does not exist or is already deleted.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.nedzo.ai/v1/templates/123e4567-e89b-12d3-a456-426614174000" \
      -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```text Response (204) theme={null}
  No Content
  ```
</ResponseExample>
