> ## 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.

# Kampagne abrufen

> Einzelne Famulor-Kampagne per ID über die API abrufen. Liefert Channel, Zeitfenster, WhatsApp/SMS-Config und optionale Call→Text-Fallback-Felder.

Gibt eine Kampagne zurück, die dir gehört. Die Antwortfelder entsprechen denen von [Kampagnen auflisten](/de/api-reference/campaigns/list).

### Pfad-Parameter

<ParamField path="id" type="integer" required>
  Kampagnen-ID
</ParamField>

### Antwort

<ResponseField name="data" type="object">
  Vollständiges Kampagnen-Objekt inklusive Channel, `schedule_windows`, WhatsApp/SMS-Config und Fallback-Feldern.
</ResponseField>

### Fehlerantworten

<ResponseField name="404 Not Found">
  Die Kampagne existiert nicht oder gehört dir nicht.
</ResponseField>

<ResponseExample>
  ```json 200 Response theme={null}
  {
    "data": {
      "id": 1,
      "name": "Neukundenakquise Q1 2026",
      "channel": "call",
      "status": "draft",
      "assistant_id": 42,
      "timezone": "Europe/Berlin",
      "max_calls_in_parallel": 3,
      "messages_per_minute": null,
      "schedule_windows": [
        { "start": "09:00", "end": "18:00" }
      ],
      "scheduled_start_at": null,
      "allowed_hours_start_time": "09:00",
      "allowed_hours_end_time": "18:00",
      "allowed_days": ["monday", "tuesday", "wednesday", "thursday", "friday"],
      "max_retries": 3,
      "retry_interval": 60,
      "retry_on_voicemail": true,
      "retry_on_goal_incomplete": false,
      "goal_completion_variable": null,
      "mark_complete_when_no_leads": true,
      "phone_number_ids": [101],
      "whatsapp_sender_id": null,
      "whatsapp_template_id": null,
      "sms_from_phone_number_id": null,
      "sms_body": null,
      "text_variable_mapping": null,
      "fallback_channel": null,
      "fallback_whatsapp_sender_id": null,
      "fallback_whatsapp_template_id": null,
      "fallback_sms_from_phone_number_id": null,
      "fallback_sms_body": null,
      "fallback_variable_mapping": null,
      "created_at": "2026-01-10T08:00:00Z",
      "updated_at": "2026-01-10T08:00:00Z"
    }
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "message": "Campaign not found"
  }
  ```
</ResponseExample>

<Tip>
  Passende Seiten: [Kampagnen auflisten](/de/api-reference/campaigns/list), [Introduction](/de/api-reference/introduction) und [Authentication Guide](/de/developers/authentication-guide).
</Tip>
