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

# Push Template

> Stage a raw HTML layout for campaign injection.

### Request Body

<ParamField body="name" type="string" required>
  Internal template display name
</ParamField>

<ParamField body="content" type="string" required>
  Full HTML body
</ParamField>

<ParamField body="subject" type="string">
  Default subject line for this template
</ParamField>

<RequestExample>
  ```json Request theme={null}
  {
    "name": "Monthly Newsletter",
    "content": "<html><body>Hello {{name}}</body></html>"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "id": "99de-88bc-11bc"
    }
  }
  ```
</ResponseExample>
