title: Upload Manual keywords: - upload manual - post - upload - manual # Upload Manual Upload automation via ZIP file. #### Request Body (multipart/form-data) **`file`** string (binary) required ZIP file containing the automation. **`automation_name`** string required Name for the automation. **`organization_id`** string required Organization ID to associate the automation with. ## Returns **`success`** boolean Success **`automation_id`** string Automation Id **`message`** string Message Example ```bash cURL curl -X POST "https://api.aitronos.com/v1/streamline/automations/upload/manual" \ -H "Authorization: Bearer $FREDDY_SESSION_TOKEN" ``` ```python Python import os import requests token = os.environ["FREDDY_SESSION_TOKEN"] response = requests.post( "https://api.aitronos.com/v1/streamline/automations/upload/manual", headers={"Authorization": f"Bearer {token}"} ) print(response.json()) ``` ```javascript JavaScript const token = process.env.FREDDY_SESSION_TOKEN; const response = await fetch('https://api.aitronos.com/v1/streamline/automations/upload/manual', { method: 'POST', headers: { 'Authorization': `Bearer ${token}` } }); const data = await response.json(); console.log(data); ``` **Response:** ```json 200 OK { "success": true, "automation_id": "abc123def456", "message": "Operation completed successfully" } ``` Errors ```json 401 Unauthorized { "success": false, "error": { "code": "AUTHENTICATION_REQUIRED", "message": "Authentication required. Please provide a valid API key.", "system_message": "Missing or invalid authorization header", "type": "authentication_error", "status": 401, "details": {}, "trace_id": "req_abc123xyz", "timestamp": "2025-11-11T10:30:00Z" } } ``` ```json 403 Forbidden { "success": false, "error": { "code": "INSUFFICIENT_PERMISSIONS", "message": "You do not have permission to access this resource.", "system_message": "Insufficient permissions for this operation", "type": "authorization_error", "status": 403, "details": {}, "trace_id": "req_def456uvw", "timestamp": "2025-11-11T10:30:00Z" } } ``` ## Related Resources - [List Automations](/docs/api-reference/streamline/automations-list)