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

# Summary And Document

> Understanding NoteDocument and NoteSummary

## Overview

Tiro provides two types of template-based document generation features: **NoteDocument** and **NoteSummary**. These are separate systems with different purposes and API support.

For how these fit into the broader Note structure (Paragraphs, Folders, and the relationships between entities), see [Note Data Model](/en/developers/fundamentals/note-data-model).

<img src="https://mintcdn.com/theplato/uefi7IlQm0V8Blgz/template_based_document.png?fit=max&auto=format&n=uefi7IlQm0V8Blgz&q=85&s=dd4310c97781834421086f01994861ca" alt="Template-based document types in Tiro" width="2636" height="1694" data-path="template_based_document.png" />

## NoteDocument vs NoteSummary

| Feature             | NoteDocument                            | NoteSummary               |
| ------------------- | --------------------------------------- | ------------------------- |
| **Purpose**         | Structured meeting documents            | Quick format templates    |
| **Templates**       | 회의록 (Meeting Minutes), Custom templates | One-Pager, Pitch, etc.    |
| **API Support**     | ✅ Full support                          | ✅ Full support            |
| **Webhook Support** | ✅ `note_document.*` events              | ✅ `note_summary.*` events |
| **Created via**     | API or Tiro app                         | Tiro app only             |

### NoteDocument

**NoteDocument** is designed for structured, section-based documents that you can create, retrieve, and manage via the API.

**Key characteristics:**

* Created using templates with defined sections
* Supports custom templates with user instructions
* Full API CRUD operations available
* Webhook events for real-time notifications

**Example templates:**

* 회의록 (Meeting Minutes)
* Custom templates you create

**API endpoints:**

* `POST /v1/external/notes/{noteGuid}/documents` - Generate document
* `GET /v1/external/notes/{noteGuid}/documents` - List documents
* `GET /v1/external/notes/{noteGuid}/documents/{documentId}` - Get document

### NoteSummary

**NoteSummary** provides quick-format templates for different presentation styles.

**Key characteristics:**

* Optimized for specific use cases (pitches, one-pagers, etc.)
* Full API support for retrieving summaries
* Webhook events for real-time notifications
* Currently created through Tiro app interface only

**Example templates:**

* One-Pager
* Pitch
* And other format-specific templates

**API endpoints:**

* `GET /v1/external/notes/{noteGuid}/summaries` - List summaries
* `GET /v1/external/notes/{noteGuid}/summaries/{summaryId}` - Get summary with content

**Webhook events:**

* `note_summary.generated` - Summary creation complete
* `note_summary.updated` - Summary modified
* `note_summary.deleted` - Summary deleted
