> ## 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.

# Get Automation Template

> Retrieve a single automation template

## Endpoint

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

## Request Body

<ParamField body="templateId" type="string" required>
  Automation template ID.
</ParamField>

## Response

<ResponseField name="data" type="AutomationTemplate">
  The requested automation template.
</ResponseField>

## TypeScript

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