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

# Zoho Books Integration

> Automatische Rechnungserstellung in Zoho Books für internationale Buchhaltung und Multi-Currency-Management

# Zoho Books Integration Template

## Konfiguration im Famulor Interface

<Tabs>
  <Tab title="Werkzeugdetails">
    \| **Name**\* | `Zoho Books Rechnung` |
    \| **Funktionsname**\* | `create_zoho_invoice` |
    \| **HTTP-Methode** | `POST` |
    \| **Endpoint**\* | `https://books.zoho.eu/api/v3/invoices` |
    \| **Timeout (ms)** | `5000` |
  </Tab>

  <Tab title="Request Body">
    ```json theme={null}
    {
      "customer_id": "{customer_id}",
      "invoice_number": "{invoice_number}",
      "date": "{invoice_date}",
      "due_date": "{due_date}",
      "line_items": [
        {
          "item_id": "{item_id}",
          "description": "{description}",
          "quantity": "{quantity}",
          "rate": "{rate}",
          "tax_id": "{tax_id}"
        }
      ]
    }
    ```
  </Tab>
</Tabs>

### Parameter-Schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "customer_id": {
      "type": "string",
      "description": "Kunden-ID"
    },
    "invoice_date": {
      "type": "string",
      "format": "date",
      "description": "Rechnungsdatum"
    },
    "due_date": {
      "type": "string",
      "format": "date",
      "description": "Fälligkeitsdatum"
    },
    "description": {
      "type": "string",
      "description": "Leistungsbeschreibung"
    },
    "quantity": {
      "type": "number",
      "description": "Menge"
    },
    "rate": {
      "type": "number",
      "description": "Einzelpreis"
    }
  },
  "required": ["customer_id", "invoice_date"]
}
```

**Success-Template**: `"Rechnung {{invoiceNumber}} erstellt. Betrag: {{total}}€, fällig am {{due_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>
