Skip to content
Last updated
DELETEhttps://api.aitronos.com/v1/streamline/folders/{folder_id}

Soft delete a folder. Contained automations are moved to root level, and child folders are moved to parent level.

folder_id string required

Folder ID (sfold_ prefixed)

Deletion Behavior

  • Folder is soft deleted (marked as deleted, not removed from database)
  • All automations in the folder are moved to root level (folder_id set to null)
  • All child folders are moved to the deleted folder's parent level
  • Deletion timestamp is recorded

Returns

Returns 204 No Content on success.

cURL
curl -X DELETE "https://api.aitronos.com/api/v1/streamline/folders/sfold_abc123" \
  -H "X-API-Key: $FREDDY_API_KEY"