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

# Delete Message Template

> Delete a message template

<ParamField path="uuid" type="string" required>
  The unique identifier (UUID) of the template
</ParamField>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "success": true,
    "message": "Template deleted successfully."
  }
  ```

  ```json 404 - Not Found theme={null}
  {
    "success": false,
    "message": "Template not found."
  }
  ```
</ResponseExample>
