Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.titletrackr.com/llms.txt

Use this file to discover all available pages before exploring further.

Folders organize your uploaded documents. They can be nested.

List folders

curl https://api.titletrackr.com/api/v1/file-vault/folders \
  -H "Authorization: Bearer ttr_live_xxx" \
  -H "Accept: application/json"

Create a folder

name
string
required
Folder name. Must be unique within its parent.
parent_id
integer
Parent folder id for nesting. Omit to create at the root.
curl -X POST https://api.titletrackr.com/api/v1/file-vault/folders \
  -H "Authorization: Bearer ttr_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{ "name": "Migrations" }'
Creating a folder whose name already exists at the same level returns 422.