Skip to main content

Zoho Books Integration Template

Configuration in the Famulor Interface

| Name* | Zoho Books Invoice | | Function Name* | create_zoho_invoice | | HTTP Method | POST | | Endpoint* | https://books.zoho.eu/api/v3/invoices | | Timeout (ms) | 5000 |

Parameter Schema

{
  "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}}"