Represents a folder for organizing Streamline automations. ## Object Structure ```json { "id": "sfold_abc123", "organization_id": "org_xyz789", "created_by_user_id": "usr_def456", "parent_folder_id": null, "name": "Production Automations", "description": "All production-ready workflows", "display_order": 1, "is_deleted": false, "created_at": "2025-11-28T10:30:00Z", "updated_at": "2025-11-28T10:30:00Z", "deleted_at": null } ``` ## Fields **`id`** string Unique folder ID (sfold_ prefixed) **`organization_id`** string Organization ID this folder belongs to **`created_by_user_id`** string User ID who created the folder **`parent_folder_id`** string | null Parent folder ID for nested folders **`name`** string Folder name (1-255 characters) **`description`** string | null Optional folder description **`display_order`** integer Sort position (lower numbers appear first) **`is_deleted`** boolean Soft delete flag **`created_at`** string ISO 8601 timestamp of creation **`updated_at`** string ISO 8601 timestamp of last update **`deleted_at`** string | null ISO 8601 timestamp of deletion