PATCHhttps://api.aitronos.com/v1/streamline/folders/{folder_id}
Update folder properties including name, description, parent, or display order.
folder_id string required
Folder ID (sfold_ prefixed)
name string optional
New folder name (1-255 characters)
description string optional
New description
parent_folder_id string | null optional
New parent folder ID or null for root level
display_order integer optional
New sort position
Returns the updated folder object.
cURL
- Bash
- Python
- JavaScript
curl -X PATCH "https://api.aitronos.com/api/v1/streamline/folders/sfold_abc123" \
-H "X-API-Key: $FREDDY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Production Workflows",
"display_order": 5
}'