Overview
Tiro provides two types of template-based document generation features: NoteDocument and NoteSummary. These are separate systems with different purposes and API support.
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
- 회의록 (Meeting Minutes)
- Custom templates you create
POST /v1/external/notes/{noteGuid}/documents- Generate documentGET /v1/external/notes/{noteGuid}/documents- List documentsGET /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
- One-Pager
- Pitch
- And other format-specific templates
GET /v1/external/notes/{noteGuid}/summaries- List summariesGET /v1/external/notes/{noteGuid}/summaries/{summaryId}- Get summary with content
note_summary.generated- Summary creation completenote_summary.updated- Summary modifiednote_summary.deleted- Summary deleted
API Support Status
Currently Supported
NoteDocument API
Create and retrieve structured documents via API
NoteDocument Webhooks
Real-time notifications for document events
NoteSummary API
Retrieve summaries via API
NoteSummary Webhooks
Real-time notifications for summary events
Related Resources
Generate Document API
API reference for creating NoteDocuments
Document Events
Webhook events for NoteDocument
List Templates
Get available NoteDocument templates
Webhooks Overview
Set up webhook notifications

