Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage agenda items. Specifically, the "Agenda - Create" operation allows users to create new agenda entries by sending specified fields to the Imobzi service. This is useful for automating the addition of appointments, reminders, or schedule items within a real estate or property management context where Imobzi is used.

Practical examples include:

  • Automatically creating calendar events when a new lead is added.
  • Scheduling follow-up calls or meetings by creating agenda items from workflow triggers.
  • Logging important dates or tasks related to properties or clients.

Properties

Name Meaning
Date The date associated with the agenda item (string format).
Description A textual description providing details about the agenda item.
Email An email address related to the agenda item (e.g., contact email).
Name The name of the agenda item.
Phone A phone number associated with the agenda item.
Title The title or subject of the agenda item.
Value A numeric value related to the agenda item (could represent cost, priority, etc.).

These fields are grouped under "Create Fields" and can be optionally provided when creating an agenda item.

Output

The node outputs JSON data representing the newly created agenda item as returned by the Imobzi API. The output structure includes all fields of the created agenda entry, typically including identifiers, timestamps, and any other metadata provided by the API response.

No binary data output is produced by this node.

Example output snippet (simplified):

{
  "id": 123,
  "date": "2024-06-01",
  "title": "Meeting with client",
  "description": "Discuss contract details",
  "email": "client@example.com",
  "phone": "1234567890",
  "value": 100
}

Dependencies

  • Requires an active connection to the Imobzi API via an API key credential configured in n8n.
  • The node uses authenticated HTTP requests to interact with Imobzi endpoints.
  • No additional external dependencies beyond the Imobzi API and its authentication.

Troubleshooting

  • Common issues:

    • Missing or invalid API credentials will cause authentication failures.
    • Providing invalid field formats (e.g., incorrect date string) may result in API errors.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "Resource 'agenda' not supported!" — indicates an unsupported resource was selected; ensure "Agenda" is chosen.
    • "Operation 'create' not supported!" — indicates an unsupported operation; verify the operation selection.
    • API error responses will be passed through; check the message for details such as validation errors or permission issues.
  • Resolution tips:

    • Verify that the API key credential is correctly set up and has necessary permissions.
    • Ensure all required fields are properly formatted and valid.
    • Use the "Continue On Fail" option in the node settings to handle partial failures gracefully.

Links and References

Discussion