Skip to content
Last updated

Retrieve every automation visible to an organization, including execution metadata and upload method details.

GEThttps://api.aitronos.com/v1/streamline/automations

Headers

Authorization string required
Bearer ${FREDDY_SESSION_TOKEN} session token for the logged-in user.

Query Parameters

organization_id string required
Return automations owned by this organization.

include_inactive boolean optional ยท Defaults to false
Set to true to include automations that were disabled or soft-deleted.

Returns

An object containing an automations array. Every automation exposes identifiers, display name, upload_method, last execution timestamps, and execution_count counters.

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

Response:

{
  "automations": [
    {
      "id": "sauto_daily_report",
      "name": "Daily Report Generation",
      "is_active": true,
      "upload_method": "git",
      "last_executed_at": "2025-11-17T10:00:00Z",
      "execution_count": 37
    },
    {
      "id": "sauto_inventory_cleanup",
      "name": "Inventory Cleanup",
      "is_active": false,
      "upload_method": "upload",
      "last_executed_at": "2025-11-14T08:00:00Z",
      "execution_count": 145
    }
  ]
}