메인 콘텐츠로 건너뛰기
POST
/
v1
/
external
/
folders
/
{folderId}
/
notes
Attach Note to Folder
curl --request POST \
  --url https://api.tiro.ooo/v1/external/folders/{folderId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "noteGuid": "note-abc123-def456"
}
'
{
  "error": {
    "code": 404018,
    "errorType": "not_found",
    "message": "No team found for user #217",
    "detail": null
  }
}

인증

Authorization
string
header
필수

API key in format {id}.{secret}

경로 매개변수

folderId
string
필수

Folder ID

본문

application/json

Attach an existing note to a folder.

noteGuid
string
필수

GUID of the note to attach. The note must belong to the same workspace as the folder.

예시:

"note-abc123-def456"

응답

Note attached