> ## Documentation Index
> Fetch the complete documentation index at: https://docs.famulor.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Automationen auflisten

> Liste alle Famulor-Automationen in deinem Account inkl. Status und Assistant-Bindings.

Dieser Endpunkt listet jede Automation in deinem Famulor-Account auf — mit aktuellem Status und, falls an ein Assistant-Event gebunden, dem zugehörigen Assistant.

### Response

<ResponseField name="data" type="array">
  Die Liste der Automationen

  <Expandable title="data-Eigenschaften">
    <ResponseField name="id" type="string">
      Die eindeutige ID der Automation. Verwende sie für die anderen Automation-Endpunkte.
    </ResponseField>

    <ResponseField name="name" type="string">
      Der Anzeigename der Automation
    </ResponseField>

    <ResponseField name="status" type="string">
      `enabled` (aktiv, reagiert auf Events) oder `disabled` (aus — fehlgeschlagener Testlauf oder explizites Deaktivieren)
    </ResponseField>

    <ResponseField name="binding" type="object | null">
      Vorhanden, wenn die Automation an ein Assistant-Event gebunden ist, sonst `null`

      <Expandable title="binding-Eigenschaften">
        <ResponseField name="type" type="string">
          Das Assistant-Event, auf das die Automation reagiert: `post_call`, `inbound`, `conversation` oder `conversation_ended`
        </ResponseField>

        <ResponseField name="assistant_id" type="integer">
          Die ID des gebundenen Assistants
        </ResponseField>

        <ResponseField name="assistant_name" type="string">
          Der Name des gebundenen Assistants
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 Response theme={null} theme={null}
  {
    "data": [
      {
        "id": "OaeThAHzIjAPTmMJAhgwm",
        "name": "Qualified leads to Google Sheets",
        "status": "enabled",
        "binding": {
          "type": "post_call",
          "assistant_id": 123,
          "assistant_name": "Sales Assistant"
        }
      },
      {
        "id": "nCazgFt1COAmGVgCWkvxY",
        "name": "Daily call report (17:00)",
        "status": "disabled",
        "binding": null
      }
    ]
  }
  ```
</ResponseExample>

<Tip>
  Verwandte Seiten: [Einführung](/de/api-reference/introduction), [Authentifizierung](/de/api-reference/authentication) und [Automation erstellen](/de/api-reference/automations/create).
</Tip>
