Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage user data within the "Usuario" (User) resource. Specifically, the Update operation allows you to modify existing user records by specifying the user ID and the fields to update.

Common scenarios for this node include:

  • Updating user contact information such as email or phone number.
  • Modifying user details like name, title, or description.
  • Adjusting custom fields related to a user record in Imobzi.

Practical example:

  • You have a workflow that receives updated user information from a form submission and uses this node to update the corresponding user record in Imobzi automatically.

Properties

Name Meaning
User Name or ID Select the user to update from a list of users loaded dynamically, or specify an ID via expression.
Update Fields Collection of fields to update on the user record. Options include:
- Date: Date associated with the user item
- Description: Description text
- Email: User's email address
- Name: User's name
- Phone: User's phone number
- Title: Title of the user
- Value: Numeric value associated with the user

Output

The node outputs JSON data representing the updated user object returned by the Imobzi API. The output structure corresponds to the user resource schema in Imobzi and includes all fields after the update.

No binary data is output by this node.

Example output snippet (simplified):

{
  "id": "123",
  "name": "Updated User Name",
  "email": "user@example.com",
  "phone": "1234567890",
  "description": "Updated description",
  "date": "2024-01-01",
  "title": "Manager",
  "value": 100
}

Dependencies

  • Requires an active connection to the Imobzi API using an API key credential configured in n8n.
  • The node uses authenticated HTTP requests to interact with Imobzi endpoints.
  • No additional external dependencies are required.

Troubleshooting

  • Error: Resource not supported
    This occurs if an unsupported resource name is provided. Ensure the resource is set to "usuario" for user operations.

  • Error: Operation not supported
    Happens when an invalid operation is selected. For updating users, ensure the operation is set to "update".

  • API Authentication Errors
    If authentication fails, verify that the API key credential is correctly configured and has sufficient permissions.

  • Empty Update Fields
    If no fields are specified to update, the API may reject the request or perform no changes. Always provide at least one field in "Update Fields".

  • Invalid User ID
    Providing a non-existent or incorrect user ID will cause the API to return an error. Confirm the user exists before updating.

Links and References


This summary focuses on the "Usuario" resource and the "Update" operation as requested.

Discussion