# Tiro Docs ## Docs - [Attach Note to Folder](https://docs.tiro.ooo/api-reference/folder/attach-note-to-folder.md): Add an existing note to the folder. The note must belong to the same workspace as the folder. Requires edit access to the folder. - [Create Folder](https://docs.tiro.ooo/api-reference/folder/create-folder.md): Create a folder in a workspace. - [Delete Folder](https://docs.tiro.ooo/api-reference/folder/delete-folder.md): Delete a folder. The folder must have no subfolders — delete or move its children first. Requires edit access. - [Detach Note from Folder](https://docs.tiro.ooo/api-reference/folder/detach-note-from-folder.md): Remove a note from the folder. This does not delete the note itself. Requires edit access to the folder. - [Get Folder](https://docs.tiro.ooo/api-reference/folder/get-folder.md): Retrieve a single folder by ID. The workspace is resolved from the folder, so no workspace is needed in the path. - [Get Folder Path](https://docs.tiro.ooo/api-reference/folder/get-folder-path.md): Retrieve the breadcrumb path from the root to the folder, inclusive. The first element is the top-level ancestor and the last element is the folder itself. - [Get Folder Tree](https://docs.tiro.ooo/api-reference/folder/get-folder-tree.md): Retrieve the workspace folder hierarchy as a nested tree. - [List Folders](https://docs.tiro.ooo/api-reference/folder/list-folders.md): List the folders you can access in a workspace, as a flat array. - [List Folders by Note](https://docs.tiro.ooo/api-reference/folder/list-folders-by-note.md): Retrieve folders for a specific note - [Move Folder](https://docs.tiro.ooo/api-reference/folder/move-folder.md): Move a folder under a new parent, or to the root level with `newParentId: null`. The target parent must be in the same workspace and you must have access to it. You cannot move a folder into its own subtree. - [Reorder Folders](https://docs.tiro.ooo/api-reference/folder/reorder-folders.md): Set the display order of sibling folders. Provide every sibling's ID in the desired order; positions are assigned by array index. The workspace is inferred from the first folder ID. - [Update Folder](https://docs.tiro.ooo/api-reference/folder/update-folder.md): Update a folder's title, description, color, or sharing type (partial update). Requires edit access. - [Get Note Document Template](https://docs.tiro.ooo/api-reference/note-document-template/get-note-document-template.md): Retrieve a specific note document template by ID. - [List Note Document Templates](https://docs.tiro.ooo/api-reference/note-document-template/list-note-document-templates.md): Retrieve all available note document templates. - [Generate Note Document](https://docs.tiro.ooo/api-reference/note-document/generate-note-document.md): Generate a note document based on a template. - [Get Note Document](https://docs.tiro.ooo/api-reference/note-document/get-note-document.md): Retrieve a specific note document by ID. - [List Note Documents](https://docs.tiro.ooo/api-reference/note-document/list-note-documents.md): List all documents generated for a specific note. - [Delete Share Link](https://docs.tiro.ooo/api-reference/note-share-link/delete-share-link.md): Delete the share link for a note. - [Get Share Link](https://docs.tiro.ooo/api-reference/note-share-link/get-share-link.md): Retrieve the current share link for a note. - [Upsert Share Link](https://docs.tiro.ooo/api-reference/note-share-link/upsert-share-link.md): Create or update a share link for a note. - [Get Note Summary](https://docs.tiro.ooo/api-reference/note-summary/get-note-summary.md): Retrieve a specific summary with full content. - [List Note Summaries](https://docs.tiro.ooo/api-reference/note-summary/list-note-summaries.md): List all summaries generated for a specific note. - [Get Note](https://docs.tiro.ooo/api-reference/note/get-note.md): Retrieve a single note by its GUID - [List Note Paragraphs](https://docs.tiro.ooo/api-reference/note/list-note-paragraphs.md): Retrieve paragraphs for a specific note - [List Notes](https://docs.tiro.ooo/api-reference/note/list-notes.md): List notes with cursor-based pagination. - [Reserve Note GUID](https://docs.tiro.ooo/api-reference/note/reserve-note-guid.md): Reserve a note GUID for later use in note creation. This allows you to: - Get a GUID before actually creating the note - Use the reserved GUID when creating a note with POST /v1/notes (internal API) - Reservation expires after 1 hour if not used - [Search Notes (Deep)](https://docs.tiro.ooo/api-reference/note/search-notes-deep.md): Keyword-required deep search. Returns notes hydrated with their primary documents (one-pager, custom) so an MCP/LLM client can read content alongside metadata in a single call. - [Create Voice File Job](https://docs.tiro.ooo/api-reference/voice-file/create-voice-file-job.md): Create a new Voice File Job for audio transcription and optional translation. - [Get Transcript](https://docs.tiro.ooo/api-reference/voice-file/get-transcript.md): Retrieve the transcribed text from a completed Voice File Job. - [Get Transcript Paragraph Summary](https://docs.tiro.ooo/api-reference/voice-file/get-transcript-paragraph-summary.md): Retrieve AI-generated paragraph summaries from the transcript. - [Get Translation](https://docs.tiro.ooo/api-reference/voice-file/get-translation.md): Retrieve a specific translation by locale. - [Get Translation Paragraph Summary](https://docs.tiro.ooo/api-reference/voice-file/get-translation-paragraph-summary.md): Retrieve AI-generated paragraph summaries from a translated version. - [Get Voice File Job](https://docs.tiro.ooo/api-reference/voice-file/get-voice-file-job.md): Retrieve the current status and details of a Voice File Job. - [List Translations](https://docs.tiro.ooo/api-reference/voice-file/list-translations.md): List all translations generated for a Voice File Job. - [Notify Upload Complete](https://docs.tiro.ooo/api-reference/voice-file/notify-upload-complete.md): Notify that audio file upload is complete and start processing. - [Expand Wiki Graph](https://docs.tiro.ooo/api-reference/wiki/expand-wiki-graph.md): Expand the graph around a specific wiki page by traversing links up to a given depth. - [Get My Workspace](https://docs.tiro.ooo/api-reference/wiki/get-my-workspace.md): Retrieve the single workspace implicit in the caller's API key. - [Get Wiki Graph Around](https://docs.tiro.ooo/api-reference/wiki/get-wiki-graph-around.md): Retrieve the graph in the neighborhood of a wiki page (radius-based expansion). - [Get Wiki Graph Links](https://docs.tiro.ooo/api-reference/wiki/get-wiki-graph-links.md): Retrieve the graph of links between multiple wiki pages. Pass one or more page GUIDs as repeated `pageGuids` query parameters. - [Get Wiki Graph Seed](https://docs.tiro.ooo/api-reference/wiki/get-wiki-graph-seed.md): Retrieve an initial set of nodes and edges for graph visualization. Optionally filter by page type, creation date, or search keyword. - [Get Wiki Info](https://docs.tiro.ooo/api-reference/wiki/get-wiki-info.md): Retrieve metadata for the workspace's wiki (name, creation timestamp, etc.). - [Get Wiki Page Details](https://docs.tiro.ooo/api-reference/wiki/get-wiki-page-details.md): Retrieve full details for a wiki page, including body/description, mentions, aliases, and links. - [List Page Mentions](https://docs.tiro.ooo/api-reference/wiki/list-page-mentions.md): List mentions (references from notes) for a specific wiki page with cursor-based pagination. - [List Wiki Pages](https://docs.tiro.ooo/api-reference/wiki/list-wiki-pages.md): List wiki pages with cursor-based pagination. Optionally filter by page type or creation date, or search by keyword (which reorders results by relevance and disables cursor pagination). - [List Workspaces](https://docs.tiro.ooo/api-reference/wiki/list-workspaces.md): List all workspaces accessible to the caller's API key or OAuth token. - [Search Wiki Mentions](https://docs.tiro.ooo/api-reference/wiki/search-wiki-mentions.md): Keyword-required search for mentions (references in notes). Returns ranked mentions with source context. - [Search Wiki Pages](https://docs.tiro.ooo/api-reference/wiki/search-wiki-pages.md): Keyword-required search for wiki pages. Returns pages ranked by full-text relevance. - [Create Team Word Memory](https://docs.tiro.ooo/api-reference/word-memory/create-team-word-memory.md): Register a new word to the team's shared word memory. - [Create User Word Memory](https://docs.tiro.ooo/api-reference/word-memory/create-user-word-memory.md): Register a new word to the user's personal word memory. - [Delete Team Word Memory](https://docs.tiro.ooo/api-reference/word-memory/delete-team-word-memory.md): Delete a team word memory. This action is irreversible. - [Delete User Word Memory](https://docs.tiro.ooo/api-reference/word-memory/delete-user-word-memory.md): Delete a word memory. This action is irreversible. - [Get Team Word Memory](https://docs.tiro.ooo/api-reference/word-memory/get-team-word-memory.md): Retrieve a specific team word memory by ID - [Get User Word Memory](https://docs.tiro.ooo/api-reference/word-memory/get-user-word-memory.md): Retrieve a specific word memory by ID - [List Team Word Memories](https://docs.tiro.ooo/api-reference/word-memory/list-team-word-memories.md): Retrieve team word memories with cursor-based pagination. - [List User Word Memories](https://docs.tiro.ooo/api-reference/word-memory/list-user-word-memories.md): Retrieve user word memories with cursor-based pagination. - [Update Team Word Memory](https://docs.tiro.ooo/api-reference/word-memory/update-team-word-memory.md): Update an existing team word memory. - [Update User Word Memory](https://docs.tiro.ooo/api-reference/word-memory/update-user-word-memory.md): Update an existing word memory. - [AI 에이전트를 위한 가이드](https://docs.tiro.ooo/ko/developers/cli/agent-guide.md): CLI를 위한 도구 선택 가이드, 컨텍스트 윈도우 경제성, 복사해서 바로 쓰는 에이전트 패턴이에요. - [CLI 개요](https://docs.tiro.ooo/ko/developers/cli/cli-overview.md): Tiro AI 노트와 트랜스크립트를 위한 에이전트 우선 커맨드라인. - [에이전트에 Tiro CLI 설치하기](https://docs.tiro.ooo/ko/developers/cli/install.md): 프롬프트 하나로, 에이전트가 Tiro CLI를 설치하고, 브라우저에서 OAuth를 실행하고, 세션이 살아 있는지 확인해요. - [빠른 시작](https://docs.tiro.ooo/ko/developers/cli/quickstart.md): 노트 나열부터 검색 결과를 셸로 대량 파이핑하기까지, 직접 해보는 다섯 가지 CLI 시나리오. - [설치와 인증](https://docs.tiro.ooo/ko/developers/cli/setup.md): npm에서 CLI를 설치하고, 브라우저 OAuth로 인증하고, headless / CI 환경을 설정해요. - [API 개요](https://docs.tiro.ooo/ko/developers/fundamentals/api-overview.md): AI 기반 노트 작성을 위한 Tiro API 개요 - [인증](https://docs.tiro.ooo/ko/developers/fundamentals/authentication.md): Tiro API 인증 방법을 알아보세요 - [에러 처리](https://docs.tiro.ooo/ko/developers/fundamentals/error-handling.md): Tiro API의 에러를 처리하는 전체 가이드 - [노트 데이터 모델](https://docs.tiro.ooo/ko/developers/fundamentals/note-data-model.md): Note의 구조 — Paragraphs, NoteSummary, NoteDocument, NoteDocumentTemplate — 와 무엇을 위해 어떤 API를 호출하는지 - [지원 로케일](https://docs.tiro.ooo/ko/developers/fundamentals/supported-locales.md): 전사, 번역, 요약에 사용되는 로케일 - [빠른 시작](https://docs.tiro.ooo/ko/developers/getting-started/quickstart.md): 5분 안에 첫 Tiro API 호출을 해보세요. - [Tiro 개발자 문서](https://docs.tiro.ooo/ko/developers/index.md): Tiro의 노트·전사·요약·음성을 코드로. REST API·Webhook·MCP·CLI 네 가지 방법으로 연결하세요. - [에이전트에 Tiro MCP 설치하기](https://docs.tiro.ooo/ko/developers/mcp/install.md): 프롬프트 하나면 에이전트가 Tiro MCP 서버를 설치하고, OAuth로 로그인시키고, 연결을 확인해요. - [MCP 개요](https://docs.tiro.ooo/ko/developers/mcp/mcp-overview.md): Claude, ChatGPT, Cursor를 비롯한 AI 클라이언트를 Tiro 노트에 연결해요. - [클라이언트 연결하기](https://docs.tiro.ooo/ko/developers/mcp/setup.md): Claude, ChatGPT, Cursor, Claude Code를 비롯한 MCP 호환 AI 클라이언트에서 Tiro MCP 서버를 설정해요. - [auth_status](https://docs.tiro.ooo/ko/developers/mcp/tools/auth-status.md): 현재 인증 상태와 권한 확인 - [폴더 검색](https://docs.tiro.ooo/ko/developers/mcp/tools/folder-search.md): 이름으로 사용자 및 팀 폴더를 페이지네이션과 함께 검색 - [get_note](https://docs.tiro.ooo/ko/developers/mcp/tools/get-note.md): 한 번의 호출로 노트를 요약, transcript, 문서와 함께 선택적으로 가져오기 - [get_note_transcript](https://docs.tiro.ooo/ko/developers/mcp/tools/get-transcript.md): 회의 노트의 전체 대화 transcript 가져오기 - [list_notes](https://docs.tiro.ooo/ko/developers/mcp/tools/list-notes.md): 필터와 선택적 keyword로 노트 목록 조회 — 가벼운 메타데이터만 - [도구](https://docs.tiro.ooo/ko/developers/mcp/tools/overview.md): Tiro 서버가 노출하는 모든 MCP 도구. - [search_notes](https://docs.tiro.ooo/ko/developers/mcp/tools/search-notes.md): 매칭된 노트를 주요 문서와 함께 반환하는 심층 keyword 검색 - [공유 링크](https://docs.tiro.ooo/ko/developers/mcp/tools/share-links.md): 노트의 공유 링크 생성, 조회, 삭제 - [Wiki](https://docs.tiro.ooo/ko/developers/mcp/tools/wiki.md): 자동 생성된 워크스페이스 위키를 검색하고 탐색합니다 (읽기 전용) - [트러블슈팅](https://docs.tiro.ooo/ko/developers/mcp/troubleshooting.md): Tiro MCP Server의 자주 발생하는 문제와 해결법이에요. - [MCP 활용 사례](https://docs.tiro.ooo/ko/developers/mcp/use-cases.md): AI 에이전트를 위한 단계별 워크플로: Tiro MCP 도구로 미팅을 검색하고 문서를 생성하기 - [External Viewers](https://docs.tiro.ooo/ko/developers/reference/external-viewers.md): Tiro OpenAPI spec을 Redoc, Swagger에서 보거나 직접 다운로드하세요. - [용어집](https://docs.tiro.ooo/ko/developers/resources/glossary.md): Tiro 화면에서 보는 이름과 API에서 쓰는 이름을 연결해요. 같은 개념인데 이름이 다른 것을 먼저 확인하세요. - [사용 정책 & 요금](https://docs.tiro.ooo/ko/developers/resources/usage-policy.md): REST API·MCP·CLI의 인증, 무료·유료 범위, rate limit을 한곳에서 안내해요. - [Note](https://docs.tiro.ooo/ko/developers/schemas/note.md): 표준 Note 데이터 모델 - [Summary And Document](https://docs.tiro.ooo/ko/developers/template-based-documents/summary-and-document.md): NoteDocument와 NoteSummary 이해하기 - [개요](https://docs.tiro.ooo/ko/developers/voice-file/overview.md): 음성 파일 처리의 전체 흐름 - [Tutorial](https://docs.tiro.ooo/ko/developers/voice-file/tutorial.md): Step-by-step guide to process audio files with transcription and translation - [Best Practices](https://docs.tiro.ooo/ko/developers/webhooks/best-practices.md): Webhook 이벤트를 처리하기 위한 모범 사례 - [FolderNote Events](https://docs.tiro.ooo/ko/developers/webhooks/events/folder-note-events.md): FolderNoteRelation 리소스에 대한 webhook 이벤트 - [Note Document Events](https://docs.tiro.ooo/ko/developers/webhooks/events/note-document-events.md): NoteDocument 리소스에 대한 webhook 이벤트 - [Note Events](https://docs.tiro.ooo/ko/developers/webhooks/events/note-events.md): Note 리소스에 대한 webhook 이벤트 - [Note Summary Events](https://docs.tiro.ooo/ko/developers/webhooks/events/note-summary-events.md): NoteSummary 리소스에 대한 webhook 이벤트 - [Event Structure](https://docs.tiro.ooo/ko/developers/webhooks/events/schema.md): 표준 webhook 이벤트 payload 구조와 구현 가이드라인 - [Webhook 개요](https://docs.tiro.ooo/ko/developers/webhooks/webhooks-overview.md): 애플리케이션을 위한 실시간 이벤트 알림 - [계정 관련 자주 묻는 질문](https://docs.tiro.ooo/ko/guide/account/faq.md): 로그인 수단, SSO, Apple 계정 통합 등 계정에 대해 자주 묻는 질문을 모았어요. - [여러 장치에서 사용](https://docs.tiro.ooo/ko/guide/account/multi-device.md): 같은 계정으로 웹, 데스크탑 앱, 모바일 앱에 동시에 로그인해서 쓸 수 있어요. 노트는 서버에 저장되어 모든 기기에서 똑같이 보여요. - [계정 관리 가이드](https://docs.tiro.ooo/ko/guide/account/overview.md): 계정 하나로 여러 워크스페이스를 오가며 쓸 수 있어요. 계정 단위로 따라다니는 것과 워크스페이스 단위로 분리되는 것을 정리했어요. - [캘린더 연동](https://docs.tiro.ooo/ko/guide/automation/calendar.md): Google 캘린더와 MS Outlook 일정을 티로에 연결하면, 오늘의 미팅에서 클릭 한 번으로 제목과 참석자가 채워진 노트가 만들어져요. - [폴더 자동화](https://docs.tiro.ooo/ko/guide/automation/folders.md): 폴더에 노트 제목, 참석자, 맞춤문서, 자동 공유를 미리 지정해두면 그 폴더의 모든 노트에 자동으로 적용돼요. 반복 회의가 완전 자동화돼요. - [공유 자동화](https://docs.tiro.ooo/ko/guide/automation/sharing.md): 조건에 맞는 노트의 기록이 끝나면 Slack 채널에 자동으로 공유돼요. 주간 회의 노트를 매번 손으로 올릴 필요가 없어요. - [Tiro API & MCP & CLI 사용 안내](https://docs.tiro.ooo/ko/guide/notes/api-mcp-cli.md): 티로의 노트와 위키를 외부 시스템, AI 에이전트, 터미널에서 그대로 활용할 수 있어요. 모든 플랜에서 추가 과금 없이 제공돼요. - [Ask Tiro](https://docs.tiro.ooo/ko/guide/notes/ask-tiro.md): 노트 하나든 전체 노트든, 기록된 대화에 대해 무엇이든 물어보세요. AI가 출처와 함께 답해드려요. - [음성파일 관리](https://docs.tiro.ooo/ko/guide/notes/audio-manage.md): 휴대폰에 저장된 녹음 파일을 한곳에서 재생하고, 노트로 변환하고, 백업하고, 삭제할 수 있어요. - [기본 노트](https://docs.tiro.ooo/ko/guide/notes/document.md): 기록이 끝나면 한 페이지 문서, 대화 기록, 스크립트가 자동으로 만들어져요. 어디에 무엇이 담기는지, 어떻게 고치고 활용하는지 알아보세요. - [음성파일 로컬 저장](https://docs.tiro.ooo/ko/guide/notes/local-audio.md): 실시간 기록의 음성 파일을 서버에 올리지 않고 내 컴퓨터에만 자동 저장해요. 원본 음성을 직접 보관하고 싶을 때 사용하세요. - [한 페이지 문서](https://docs.tiro.ooo/ko/guide/notes/one-page.md): 회의에 참석하지 않은 사람도 이 문서 하나로 내용을 따라잡을 수 있어요. 기록이 끝나면 자동으로 만들어지는 티로의 기본 요약이에요. - [문단별 다시 듣기](https://docs.tiro.ooo/ko/guide/notes/replay.md): 스크립트의 각 문단에서 그 구간의 원본 음성을 바로 재생할 수 있어요. 받아쓰기가 정확한지 원문으로 확인할 때 유용해요. - [템플릿](https://docs.tiro.ooo/ko/guide/notes/templates.md): 회의록, 인터뷰, 평가표처럼 반복되는 문서 형식을 템플릿으로 만들어두면 클릭 한 번으로 어떤 노트든 그 형식으로 정리돼요. - [위키](https://docs.tiro.ooo/ko/guide/notes/wiki.md): 회의 기록에서 사람·주제·결정을 자동으로 정리해 조직의 지식 지도를 만드는 기능이에요. - [조직 보안 설정](https://docs.tiro.ooo/ko/guide/privacy/enterprise-security.md): SSO 로그인 통합, 접속 IP 제한, 개인정보 마스킹, 공유 링크 통제까지. 조직의 보안 요구사항에 맞춰 워크스페이스를 구성할 수 있어요. - [개인정보 보호 및 보안](https://docs.tiro.ooo/ko/guide/privacy/overview.md): 음성은 텍스트 변환 직후 폐기되고, 노트는 암호화되어 서울 리전에 저장돼요. 고객 데이터는 AI 학습에 일절 사용하지 않아요. - [통화 녹음 변환](https://docs.tiro.ooo/ko/guide/recording/call-recording.md): 갤럭시 통화 녹음 파일을 티로가 자동으로 찾아 텍스트 노트로 변환해요. 자동 변환을 켜두면 새 통화 녹음이 알아서 노트가 돼요. - [컨퍼런스 모드](https://docs.tiro.ooo/ko/guide/recording/conference.md): 발표·행사장에서 실시간 자막을 큰 화면에 띄우고, 청중은 QR 코드로 각자 휴대폰에서 자막을 받아 봐요. 실시간 번역 자막도 함께 보여줄 수 있어요. - [맥락](https://docs.tiro.ooo/ko/guide/recording/context.md): 대화 상황과 고유명사를 미리 알려주면 티로가 더 정확하게 받아 적고, 원하는 톤으로 요약해요. - [화자 분리](https://docs.tiro.ooo/ko/guide/recording/diarization.md): 누가 말했는지 자동으로 구분해 스크립트에 화자 태그를 붙여요. 태그를 클릭해 실제 이름으로 바꿀 수 있어요. - [실시간 대화기록](https://docs.tiro.ooo/ko/guide/recording/live.md): 말하는 동시에 화면에 텍스트가 기록돼요. 대화 언어와 기록 언어를 다르게 설정하면 실시간 번역도 함께 볼 수 있어요. - [오프라인 녹음](https://docs.tiro.ooo/ko/guide/recording/offline.md): 인터넷 연결 없이도 대화를 안전하게 기록해요. 녹음 파일은 기기에 먼저 저장되고, 연결이 되면 자동으로 업로드되어 노트로 변환돼요. - [대화 참석자 관리](https://docs.tiro.ooo/ko/guide/recording/participants.md): 자주 만나는 사람의 이름과 이메일을 저장해두면 티로가 이름을 기억하고 더 정확하게 기록해요. - [시스템 오디오 녹음](https://docs.tiro.ooo/ko/guide/recording/system-audio.md): 화상회의 상대방 목소리, 영상 소리처럼 컴퓨터에서 재생되는 소리를 내 목소리와 함께 녹음해요. 미팅에 봇이 참여하지 않고, 켜둘 때만 작동해요. - [음성파일 업로드](https://docs.tiro.ooo/ko/guide/recording/upload.md): 이미 가지고 있는 음성·영상 파일을 올리면 정리된 텍스트 노트로 변환돼요. 파일 하나당 최대 1GB, 5시간까지 지원해요. - [Tiro Watch 앱: Apple Watch에서 녹음하기](https://docs.tiro.ooo/ko/guide/recording/watch.md): Apple Watch에서 바로 녹음을 시작하고, 페어링된 iPhone Tiro 앱으로 자동 전송해 노트로 변환해요. - [단어장](https://docs.tiro.ooo/ko/guide/recording/wordbook.md): 회사 이름, 동료 이름, 제품 이름처럼 자주 쓰는 고유명사를 등록해두면 티로가 모든 기록에서 정확하게 받아써요. - [폴더](https://docs.tiro.ooo/ko/guide/sharing/folders.md): 노트를 폴더로 정리하고, 팀 폴더로 워크스페이스 멤버와 한 번에 공유하세요. 폴더 설명은 AI 답변의 맥락으로도 활용돼요. - [연동](https://docs.tiro.ooo/ko/guide/sharing/integrations.md): Slack, Notion, Confluence, HubSpot에 노트를 바로 보내거나 PDF·Word·이메일로 내보낼 수 있어요. 한 번만 연동하면 돼요. - [링크 공유 보안](https://docs.tiro.ooo/ko/guide/sharing/link-security.md): 공유 링크의 공개 범위를 회사 구성원까지로 제한하고, 관리자가 워크스페이스의 모든 공유 링크를 정책으로 관리할 수 있어요. - [공유](https://docs.tiro.ooo/ko/guide/sharing/overview.md): 링크 하나로 누구에게나 노트를 보여주거나, 권한을 지정해 함께 편집할 사람을 초대할 수 있어요. - [티로를 AI와 연결하기](https://docs.tiro.ooo/ko/guide/start/ai-connect.md): 티로에 쌓인 노트와 위키를 AI와 함께 쓰는 네 가지 방법이에요. 내장 AI 채팅부터 Claude 연결, API 자동화까지. - [앱 안내](https://docs.tiro.ooo/ko/guide/start/download.md): 웹, 데스크탑(Windows·Mac), 모바일(iOS·Android), Apple Watch까지. 플랫폼별 특징과 다운로드 방법을 안내해요. - [티로 서비스 소개](https://docs.tiro.ooo/ko/guide/start/overview.md): 티로는 회의·강의·통화를 자동으로 받아 적고 요약하는 AI 노트테이커예요. 기록이 쌓이면 조직의 지식이 되고, AI 에이전트가 그 지식으로 일해요. - [빠른 시작](https://docs.tiro.ooo/ko/guide/start/quickstart.md): 가입부터 첫 노트까지 5분이면 충분해요. 기록을 시작하고, 자동으로 정리된 노트를 받아보고, 다음에 해볼 것까지 안내해요. - [결제가 안 되거나 반영되지 않아요](https://docs.tiro.ooo/ko/guide/troubleshooting/billing-not-applied.md): 결제했는데 플랜이 적용되지 않거나 인앱결제에서 오류가 날 때, 결제 경로별로 해결 방법을 안내해요. - [데스크탑 앱 업데이트하기](https://docs.tiro.ooo/ko/guide/troubleshooting/desktop-update.md): 데스크탑 앱은 자동으로 업데이트돼요. 버전 확인 방법과 업데이트가 안 될 때 해결하는 방법을 안내해요. - [받아야 할 메일이 안 와요](https://docs.tiro.ooo/ko/guide/troubleshooting/email.md): 티로 메일이 스팸함이나 프로모션 탭으로 분류되는 경우가 많아요. 메일 종류별로 확인하는 방법을 안내해요. - [Microsoft 로그인 오류 해결 방법](https://docs.tiro.ooo/ko/guide/troubleshooting/microsoft-login.md): 회사·학교 Microsoft 계정으로 로그인이 막힐 때는 조직 관리자의 사전 승인(Admin Consent)이 필요해요. IT 관리자에게 전달할 승인 방법을 안내해요. - [자주 묻는 질문](https://docs.tiro.ooo/ko/guide/troubleshooting/overview.md): 녹음 파일 다운로드, 로그인 문제, 해외 사용 등 자주 들어오는 질문을 모았어요. 증상별 상세 가이드 링크도 함께 안내해요. - [기록이 되지 않거나 중단돼요](https://docs.tiro.ooo/ko/guide/troubleshooting/recording.md): 녹음이 안 되거나 일부만 기록될 때, 사용 환경(웹·데스크탑·모바일)별로 증상에 맞는 해결 방법을 안내해요. - [결제 FAQ](https://docs.tiro.ooo/ko/guide/workspace/billing-faq.md): 영수증·인보이스 확인, 환불 기준, 결제 관련 자주 묻는 질문을 모았어요. - [구독 관리](https://docs.tiro.ooo/ko/guide/workspace/billing-guide.md): 결제한 플랫폼(웹·iOS·Android)에 따라 구독 관리, 플랜 변경, 환불 방법이 달라요. 내 결제사를 확인하고 그에 맞는 방법을 안내해드려요. - [크레딧](https://docs.tiro.ooo/ko/guide/workspace/credits.md): 크레딧은 플랜과 별개로 쓸 수 있는 녹음 시간이에요. 1크레딧 = 1분이고, 친구를 초대하면 두 사람 모두 100분씩 받아요. - [무료 체험](https://docs.tiro.ooo/ko/guide/workspace/free-trial.md): 가입 즉시 3주간 사용할 수 있는 300분의 무료 체험이 시작돼요. 결제 수단 등록 없이 전 기능을 써볼 수 있어요. - [워크스페이스](https://docs.tiro.ooo/ko/guide/workspace/overview.md): 워크스페이스는 노트, 폴더, 멤버, 결제가 한곳에 모이는 공간이에요. 혼자 쓰다가 멤버를 초대하면 그대로 팀 공간이 돼요. - [티로 요금제](https://docs.tiro.ooo/ko/guide/workspace/plans.md): 개인은 라이트·프로·맥스, 팀은 시트당 결제하는 팀 플랜, 조직은 엔터프라이즈. 연간 결제 시 2개월이 무료예요. - [무엇을 도와드릴까요?](https://docs.tiro.ooo/ko/index.md): Tiro 사용법부터 API 연동까지, 아래에서 필요한 주제를 골라보세요. ## OpenAPI Specs - [openapi](https://docs.tiro.ooo/openapi.yaml)