List Organization Note Document Templates
curl --request GET \
--url https://api.tiro.ooo/v1/external/organizations/me/note-document-templates \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tiro.ooo/v1/external/organizations/me/note-document-templates"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tiro.ooo/v1/external/organizations/me/note-document-templates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tiro.ooo/v1/external/organizations/me/note-document-templates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tiro.ooo/v1/external/organizations/me/note-document-templates"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tiro.ooo/v1/external/organizations/me/note-document-templates")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiro.ooo/v1/external/organizations/me/note-document-templates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"content": [
{
"id": 51,
"title": "회의록",
"description": "회의 내용을 체계적으로 정리하는 템플릿",
"sections": [
{
"id": 61,
"title": "주요 논의 사항",
"sectionType": "PLAIN_TEXT",
"userInstruction": "회의에서 논의된 핵심 주제를 요약해주세요"
}
],
"favorite": false,
"isManaged": false,
"isEditable": true,
"createdAt": "2025-10-20T12:35:26Z"
}
],
"nextCursor": "cursor_string"
}List Organization Note Document Templates
List the org-owned note document templates of the organization bound to the
API key, with cursor-based pagination. Requires an organization API key;
personal, workspace, and legacy team keys return 401.
GET
/
v1
/
external
/
organizations
/
me
/
note-document-templates
List Organization Note Document Templates
curl --request GET \
--url https://api.tiro.ooo/v1/external/organizations/me/note-document-templates \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tiro.ooo/v1/external/organizations/me/note-document-templates"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tiro.ooo/v1/external/organizations/me/note-document-templates', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tiro.ooo/v1/external/organizations/me/note-document-templates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tiro.ooo/v1/external/organizations/me/note-document-templates"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tiro.ooo/v1/external/organizations/me/note-document-templates")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiro.ooo/v1/external/organizations/me/note-document-templates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"content": [
{
"id": 51,
"title": "회의록",
"description": "회의 내용을 체계적으로 정리하는 템플릿",
"sections": [
{
"id": 61,
"title": "주요 논의 사항",
"sectionType": "PLAIN_TEXT",
"userInstruction": "회의에서 논의된 핵심 주제를 요약해주세요"
}
],
"favorite": false,
"isManaged": false,
"isEditable": true,
"createdAt": "2025-10-20T12:35:26Z"
}
],
"nextCursor": "cursor_string"
}인증
API key in format {id}.{secret}
쿼리 매개변수
Cursor for the next page
Page size (default 100, max 200)
필수 범위:
1 <= x <= 200⌘I