Skip to content
Last updated

Pull the complete configuration and metadata for a single Streamline automation.

GEThttps://api.aitronos.com/v1/streamline/automations/{automation_id}

Headers

Authorization string required
Bearer session token.

Path Parameters

automation_id string required
Identifier formatted as sauto_....

Returns

A Streamline automation resource containing descriptions, upload sources, Git configuration (if any), scheduling flags, and execution statistics.

Bash
curl "https://api.aitronos.com/v1/streamline/automations/sauto_daily_report" \
  -H "Authorization: Bearer $FREDDY_SESSION_TOKEN"

Response:

{
  "id": "sauto_daily_report",
  "name": "Daily Report Generation",
  "description": "Generates the sales PDF and emails stakeholders.",
  "organization_id": "org_123",
  "upload_method": "git",
  "git_repository_url": "https://github.com/freddy/reports",
  "git_branch": "main",
  "execution_file_path": "src/run.py",
  "is_active": true,
  "last_executed_at": "2025-11-17T10:00:00Z",
  "execution_count": 37,
  "schedule": {
    "enabled": true,
    "cron_expression": "0 10 * * 1",
    "timezone": "Europe/Zurich"
  }
}