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

# API-Basis-Vorlagen

> Template-Sammlung für gängige API-Patterns und Integration-Beispiele als Ausgangspunkt für Custom-Integrationen

# API-Basis-Vorlagen

Diese Seite enthält bewährte Template-Muster für die häufigsten API-Integrationstypen. Verwende diese als Ausgangspunkt für deine eigenen Custom-Mid-call Actions.

## GET-Request-Template

### REST API GET Beispiel

<Tabs>
  <Tab title="Werkzeugdetails">
    \| **Name**\* | `REST API GET Beispiel` |
    \| **Funktionsname**\* | `get_user_info` |
    \| **HTTP-Methode** | `GET` |
    \| **Endpoint**\* | `https://api.example.com/users/{user_id}` |
  </Tab>

  <Tab title="Query-Parameter">
    ```json theme={null}
    {
      "include": "profile,settings"
    }
    ```
  </Tab>
</Tabs>

**Success-Template**: `"Benutzer {{name}} ({{email}}) hat den Status {{status}}."`

## POST-Request-Template

### REST API POST Beispiel

<Tabs>
  <Tab title="Werkzeugdetails">
    \| **Name**\* | `REST API POST Beispiel` |
    \| **Funktionsname**\* | `create_ticket` |
    \| **HTTP-Methode** | `POST` |
    \| **Endpoint**\* | `https://api.example.com/tickets` |
  </Tab>

  <Tab title="Request Body">
    ```json theme={null}
    {
      "title": "{title}",
      "description": "{description}",
      "priority": "{priority}",
      "user_id": "{user_id}"
    }
    ```
  </Tab>
</Tabs>

**Success-Template**: `"Das Support-Ticket wurde erfolgreich erstellt. Ticket-ID: {{ticket_id}}, Status: {{status}}."`

## Webhook-Template

### Webhook Notification

<Tabs>
  <Tab title="Werkzeugdetails">
    \| **Name**\* | `Webhook Notification` |
    \| **Funktionsname**\* | `send_webhook` |
    \| **HTTP-Methode** | `POST` |
    \| **Endpoint**\* | `{webhook_url}` |
  </Tab>
</Tabs>

**Success-Template**: `"Die Webhook-Benachrichtigung wurde erfolgreich gesendet."`

## Basis-CRM-Template

### CRM Integration

<Tabs>
  <Tab title="Werkzeugdetails">
    \| **Name**\* | `CRM Integration` |
    \| **Funktionsname**\* | `get_customer_data` |
    \| **HTTP-Methode** | `GET` |
    \| **Endpoint**\* | `https://api.crm-example.com/customers/{customer_id}` |
  </Tab>
</Tabs>

**Success-Template**: `"Der Kunde {{customer_name}} ({{customer_email}}) hat den Status {{customer_status}}. Letzter Kontakt: {{last_contact_date}}."`

***

<Tip>
  Passende Seiten: [Introduction](/de/automation-platform/introduction) und [Building Flows](/de/automation-platform/building-flows) und [Debugging Runs](/de/automation-platform/debugging-runs).
</Tip>

<Tip>
  Statt einzelner HTTP-Aktionen ein ganzes Toolset auf einmal? Externen **MCP-Server** verbinden — Tools werden automatisch erkannt. Siehe [MCP-Server](/de/platform/mcp-servers).
</Tip>
