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

# Delete Automation Template

> Delete an automation template

## Endpoint

```bash theme={null}
POST https://api.ugc.inc/automations/delete
```

## Request Body

<ParamField body="templateId" type="string" required>
  Template ID to delete.
</ParamField>

## Response

<ResponseField name="data" type="null">
  Returns `null` on success.
</ResponseField>

## TypeScript

```typescript theme={null}
const res = await client.automations.deleteTemplate({ templateId: 'tpl_123' });
```
