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

> Automatic invoice creation in Zoho Books for international accounting and multi-currency management

# Zoho Books Integration Template

## Configuration in the Famulor Interface

<Tabs>
  <Tab title="Tool Details">
    \| **Name**\* | `Zoho Books Invoice` |
    \| **Function Name**\* | `create_zoho_invoice` |
    \| **HTTP Method** | `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": "Customer ID"
    },
    "invoice_date": {
      "type": "string",
      "format": "date",
      "description": "Invoice date"
    },
    "due_date": {
      "type": "string",
      "format": "date",
      "description": "Due date"
    },
    "description": {
      "type": "string",
      "description": "Service description"
    },
    "quantity": {
      "type": "number",
      "description": "Quantity"
    },
    "rate": {
      "type": "number",
      "description": "Unit price"
    }
  },
  "required": ["customer_id", "invoice_date"]
}
```

**Success Template**: `"Invoice {{invoiceNumber}} created. Amount: {{total}}€, due on {{due_date}}"`

***

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