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

# DATEV Kontenumsätze

> Echtzeit-Zugriff auf DATEV Kontenbewegungen und Salden für Liquiditätsmanagement während Geschäftsgesprächem

# DATEV Kontenumsätze Integration

## Konfiguration im Famulor Interface

<Tabs>
  <Tab title="Werkzeugdetails">
    \| **Name**\* | `DATEV Kontenumsätze` |
    \| **Funktionsname**\* | `get_datev_account_movements` |
    \| **HTTP-Methode** | `GET` |
    \| **Endpoint**\* | `https://api.datev.de/data/v1/clients/{client_id}/accounts/{account_number}/movements` |
    \| **Timeout (ms)** | `5000` |
  </Tab>
</Tabs>

### Parameter-Schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "client_id": {
      "type": "string",
      "description": "Mandantennummer"
    },
    "account_number": {
      "type": "string",
      "description": "Kontonummer (z.B. 1000 für Kasse)"
    },
    "date_from": {
      "type": "string",
      "format": "date",
      "description": "Datum von"
    },
    "date_to": {
      "type": "string",
      "format": "date", 
      "description": "Datum bis"
    },
    "status": {
      "type": "string",
      "enum": ["all", "open", "cleared"],
      "description": "Status der Posten"
    }
  },
  "required": ["client_id", "account_number"]
}
```

**Agent-Message**: `"Ich rufe die Kontoinformationen ab..."`

**Success-Template**: `"Kontostand: {{balance}}€. {{#if openItems}}Offene Posten: {{openItems}}€.{{/if}} Bewegungen im Zeitraum: {{movements.length}}"`

***

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