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

# Create DATEV Dunning Notice

> Automatic creation of dunning notices in DATEV for outstanding receivables directly during customer meetings

# DATEV Dunning Notice Integration

## Configuration in the Famulor Interface

<Tabs>
  <Tab title="Tool Details">
    \| **Name**\* | `DATEV Mahnung erstellen` |
    \| **Function Name**\* | `create_datev_dunning` |
    \| **HTTP Method** | `POST` |
    \| **Endpoint**\* | `https://api.datev.de/data/v1/clients/{client_id}/dunnings` |
    \| **Timeout (ms)** | `5000` |
  </Tab>
</Tabs>

### Parameter Schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "client_id": {
      "type": "string",
      "description": "Client number"
    },
    "customer_number": {
      "type": "string", 
      "description": "Customer number"
    },
    "level": {
      "type": "integer",
      "enum": [1, 2, 3],
      "description": "Dunning level"
    },
    "invoice_numbers": {
      "type": "array",
      "description": "Outstanding invoice numbers"
    },
    "amount": {
      "type": "number",
      "description": "Total amount"
    },
    "fee": {
      "type": "number",
      "description": "Dunning fee"
    },
    "deadline": {
      "type": "string",
      "format": "date",
      "description": "Payment deadline"
    }
  },
  "required": ["client_id", "customer_number", "level", "invoice_numbers"]
}
```

**Agent-Message**: `"Creating the {{level}}. dunning notice..."`

**Success-Template**: `"Dunning notice {{dunningNumber}} created. Payment deadline: {{deadline}}. Total claim: €{{amount}} including €{{fee}} dunning fee."`

***

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