Zoho Books Integration Template

Konfiguration im Famulor Interface

| Name* | Zoho Books Rechnung | | Funktionsname* | create_zoho_invoice | | HTTP-Methode | POST | | Endpoint* | https://books.zoho.eu/api/v3/invoices | | Timeout (ms) | 5000 |

Parameter-Schema

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