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

# Overview

> Manage the call summary templates that shape AI-generated call summaries

The Summary Templates API lets you manage your team's **call summary templates**. A summary template defines how Allo's AI structures the summary of a call: its name, an optional call context that guides the AI, an optional icon, and an ordered list of sections.

Templates are shared across the whole team and are used to produce the AI summary of a call.

## Template fields

| Field          | Constraint                                                                             |
| -------------- | -------------------------------------------------------------------------------------- |
| `name`         | Required. The display name of the template.                                            |
| `call_context` | Optional. Background context that helps the AI summarize calls. Max 4,000 characters.  |
| `icon`         | Optional. A short icon (e.g. an emoji) shown next to the template.                     |
| `sections`     | Optional. Up to 10 ordered sections, each with a `title`, `instructions`, and `order`. |

## Endpoints

<CardGroup cols={1}>
  <Card title="List summary templates" href="/en/v2/api-reference/summary-templates/list-summary-templates">
    All of the team's summary templates
  </Card>

  <Card title="Get summary template" href="/en/v2/api-reference/summary-templates/get-summary-template">
    A single template by ID
  </Card>

  <Card title="Create summary template" href="/en/v2/api-reference/summary-templates/create-summary-template">
    Create a new template for the team
  </Card>

  <Card title="Update summary template" href="/en/v2/api-reference/summary-templates/update-summary-template">
    Replace a template's content
  </Card>

  <Card title="Delete summary template" href="/en/v2/api-reference/summary-templates/delete-summary-template">
    Deactivate a template
  </Card>
</CardGroup>
