Overview
Webhook events for NoteDocument resources. All note document events use resourceType: "NoteDocument".
Event Details
note_document.generated
- When all sections of a document have been generated
note_document.updated
- When a user modifies section content
- When document metadata changes
note_document.deleted
- When a document is deleted
Example Payload
{
"event": "note_document.generated",
"timestamp": "2025-10-23T12:00:00Z",
"data": {
"id": 456,
"noteGuid": "note-abc123-def456",
"template": {
"id": 789,
"title": "회의록"
},
"locale": "ko_KR",
"sections": [
{
"content": {
"text": "회의 요약 내용...",
"html": "<p>회의 요약 내용...</p>"
},
"createdAt": "2025-10-23T12:00:00Z"
}
],
"createdAt": "2025-10-23T11:55:00Z",
"updatedAt": "2025-10-23T11:55:00Z"
}
}
Resource Data
For detailed schema information, see the NoteDocument definition in the API Reference.