---
title: "Get automation"
method: GET
path: "/api/automations/{id}"
tags: ["Platform API"]
---

# Get automation

`GET /api/automations/{id}`

Get one configured Outlit automation by id. Read-only and does not include run history.

## Path parameters

- `id` string, uuid, required

## Response `200`

The configured automation was returned.

- GetAutomationCommandSuccess
  - `ok` true, required
  - `commandId` 'automation.get', required
  - `commandVersion` 1, required
  - `correlationId` string, required
  - `result` object, required
    - `operationId` 'automation.get', required
    - `status` 'completed', required
    - `resources` CommandResource[], required
      - `type` string, required
      - `id` string, required
    - `data` object, required
      - `automation` AutomationRead, required
        - `id` string, uuid, required
        - `key` string, required
        - `managedBy` 'UI' | 'CODE', required
        - `name` string, required
        - `description` string, nullable, required
        - `enabled` boolean, required
        - `triggerType` 'SIGNAL_OCCURRENCE' | 'SCHEDULE', required
        - `triggerJson` unknown, required
        - `audienceFilterJson` unknown, required
        - `matchMode` 'ANY' | 'ALL' | 'AT_LEAST', required
        - `schemaVersion` string, required
        - `configHash` string, nullable, required
        - `archivedAt` string, date-time, nullable, required
        - `lastRunAt` string, date-time, nullable, required
        - `lastRunStatus` 'PENDING' | 'SKIPPED' | 'RUNNING_PROCESSOR' | 'READY_FOR_DELIVERY' | 'PENDING_DELIVERY' | 'DELIVERED' | 'PARTIAL_FAILURE' | 'FAILED', required
        - `nextRunAt` string, date-time, nullable, required
        - `createdAt` string, date-time, required
        - `updatedAt` string, date-time, required
        - `signals` SignalRead[], required
          - `id` string, uuid, required
          - `key` string, required
          - `managedBy` 'UI' | 'CODE', required
          - `name` string, required
          - `description` string, nullable, required
          - `kind` 'EVENT_MATCH' | 'EVENT_PATTERN', required
          - `definition` unknown, required
          - `schemaVersion` string, required
          - `configHash` string, nullable, required
          - `archivedAt` string, date-time, nullable, required
          - `createdAt` string, date-time, required
          - `updatedAt` string, date-time, required
        - `destinations` DestinationRead[], required
          - `id` string, uuid, required
          - `key` string, required
          - `name` string, required
          - `description` string, nullable, required
          - `provider` 'SLACK' | 'OUTPOST' | 'WEBHOOK', required
          - `kind` 'SLACK_CHANNEL' | 'WEBHOOK_ENDPOINT', required
          - `enabled` boolean, required
          - `maskedConfig` object, nullable, required
          - `syncStatus` 'PENDING_PROVIDER_SYNC' | 'SYNCED' | 'PROVIDER_ERROR' | 'DISABLED_BY_PROVIDER', required
          - `lastSyncedAt` string, date-time, nullable, required
          - `providerErrorCode` string, nullable, required
          - `providerErrorMessage` string, nullable, required
          - `isDefault` boolean, required
          - `schemaVersion` string, required
          - `configHash` string, nullable, required
          - `archivedAt` string, date-time, nullable, required
          - `createdAt` string, date-time, required
          - `updatedAt` string, date-time, required
        - `activeSignalCount` integer, required
        - `activeDestinationCount` integer, required
        - `agentId` string, uuid, nullable, required
    - `warnings` string[], required
    - `auditId` string

## Other responses

- `401` — Invalid or missing API key.
- `403` — The API key is valid but does not have the required agent read scope.
- `404` — No automation was found for the authenticated organization and requested id.
- `500` — Internal server error.
- `503` — The platform could not get the automation.

## Changes

- **2026-06-29** `66bd7f8a6c1f` — 4 breaking, 1 info
  - removed the required property `result/allOf[subschema #2]/data/automation/deliveryPolicyJson` from the response with the `200` status
  - removed the required property `result/allOf[subschema #2]/data/automation/outcomeType` from the response with the `200` status
  - removed the required property `result/allOf[subschema #2]/data/automation/processorJson` from the response with the `200` status
  - removed the required property `result/allOf[subschema #2]/data/automation/processorPolicyJson` from the response with the `200` status
  - …1 more
- **2026-06-29** `45b08e869112` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/outlitai/apis/outlit-api/changes/api/automations/:id/get.md)

---

[API](https://skmtc.dev/outlitai/apis/outlit-api.md) · [All operations](https://skmtc.dev/outlitai/apis/outlit-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/outlitai/outlit-api/revisions/147173adbb3f/schema)
