> ## 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 Account Movements

> Real-time access to DATEV account transactions and balances for liquidity management during business discussions

# DATEV Account Movements Integration

## Configuration in the Famulor Interface

<Tabs>
  <Tab title="Tool Details">
    \| **Name**\* | `DATEV Kontenumsätze` |
    \| **Function Name**\* | `get_datev_account_movements` |
    \| **HTTP Method** | `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": "Client number"
    },
    "account_number": {
      "type": "string",
      "description": "Account number (e.g., 1000 for cash account)"
    },
    "date_from": {
      "type": "string",
      "format": "date",
      "description": "Date from"
    },
    "date_to": {
      "type": "string",
      "format": "date", 
      "description": "Date to"
    },
    "status": {
      "type": "string",
      "enum": ["all", "open", "cleared"],
      "description": "Status of the items"
    }
  },
  "required": ["client_id", "account_number"]
}
```

**Agent-Message**: `"Retrieving the account information..."`

**Success-Template**: `"Balance: €{{balance}}. {{#if openItems}}Open items: €{{openItems}}.{{/if}} Movements in the period: {{movements.length}}"`

***

<Tip>
  Related pages: [Introduction](/en/automation-platform/introduction) and [Building Flows](/en/automation-platform/building-flows), and [Debugging Runs](/en/automation-platform/debugging-runs).
</Tip>

<Tip>
  Need a whole toolset instead of building HTTP actions one by one? Connect an external **MCP server** — tools are discovered automatically. See [MCP Servers](/en/platform/mcp-servers).
</Tip>
