API Docs
Update Folder
Update folder properties like name or parent folder
PATCH
https://api.gettranscribe.ai/transcriptions-folders/{id}Headers
Content-Type: application/json
x-api-key: YOUR_API_KEY
Path Parameters
idrequiredThe ID of the folder to update
Body Parameters
nameoptionalNew name for the folder
parent_idoptionalNew parent folder ID (use null to move to root level)
Example Request
curl -X PATCH https://api.gettranscribe.ai/transcriptions-folders/123 \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"name": "Updated Folder Name"
}'