Reorder Folders
curl --request POST \
--url https://api.tiro.ooo/v1/external/folders/reorder \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orderedFolderIds": [
"12346",
"12345",
"12347"
]
}
'import requests
url = "https://api.tiro.ooo/v1/external/folders/reorder"
payload = { "orderedFolderIds": ["12346", "12345", "12347"] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({orderedFolderIds: ['12346', '12345', '12347']})
};
fetch('https://api.tiro.ooo/v1/external/folders/reorder', 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/folders/reorder",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orderedFolderIds' => [
'12346',
'12345',
'12347'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.tiro.ooo/v1/external/folders/reorder"
payload := strings.NewReader("{\n \"orderedFolderIds\": [\n \"12346\",\n \"12345\",\n \"12347\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.tiro.ooo/v1/external/folders/reorder")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"orderedFolderIds\": [\n \"12346\",\n \"12345\",\n \"12347\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiro.ooo/v1/external/folders/reorder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"orderedFolderIds\": [\n \"12346\",\n \"12345\",\n \"12347\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}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.
Requires edit access.
POST
/
v1
/
external
/
folders
/
reorder
Reorder Folders
curl --request POST \
--url https://api.tiro.ooo/v1/external/folders/reorder \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"orderedFolderIds": [
"12346",
"12345",
"12347"
]
}
'import requests
url = "https://api.tiro.ooo/v1/external/folders/reorder"
payload = { "orderedFolderIds": ["12346", "12345", "12347"] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({orderedFolderIds: ['12346', '12345', '12347']})
};
fetch('https://api.tiro.ooo/v1/external/folders/reorder', 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/folders/reorder",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'orderedFolderIds' => [
'12346',
'12345',
'12347'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.tiro.ooo/v1/external/folders/reorder"
payload := strings.NewReader("{\n \"orderedFolderIds\": [\n \"12346\",\n \"12345\",\n \"12347\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.tiro.ooo/v1/external/folders/reorder")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"orderedFolderIds\": [\n \"12346\",\n \"12345\",\n \"12347\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiro.ooo/v1/external/folders/reorder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"orderedFolderIds\": [\n \"12346\",\n \"12345\",\n \"12347\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}인증
API key in format {id}.{secret}
본문
application/json
Set the display order of sibling folders.
Folder IDs in their new display order; positions are assigned by array index. All folders must belong to the same workspace, which is inferred from the first ID.
Minimum array length:
1예시:
["12346", "12345", "12347"]
응답
Display order updated
⌘I