Imobzi icon

Imobzi

Interagir com a API da Imobzi

Overview

This node integrates with the Imobzi API to manage various resources such as leads, properties, contacts, contracts, and more. Specifically, for the Contact resource with the Delete operation, it allows users to delete a contact by specifying its name or ID. This is useful in scenarios where you want to automate the removal of outdated or incorrect contact records from your Imobzi account.

Practical example: Automatically deleting a contact after they unsubscribe or when cleaning up your CRM data to maintain accuracy.

Properties

Name Meaning
Contact Name or ID Select a contact from the list or specify its ID using an expression. This identifies which contact to delete.

Output

The output JSON contains the response data from the Imobzi API after attempting to delete the specified contact. Typically, this will include confirmation details or status information about the deletion operation.

Example structure:

{
  "json": {
    // Data returned by the API confirming deletion or related info
  }
}

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Imobzi API.
  • Needs an API authentication credential configured in n8n to authorize requests.
  • The node uses the Imobzi API endpoint corresponding to the "contacts" resource for deletion.

Troubleshooting

  • Common issues:

    • Specifying an invalid or non-existent contact ID may result in an error.
    • Network or authentication failures can prevent successful API calls.
  • Error messages:

    • "Resource 'contact' not supported!" — indicates an unsupported resource was selected; ensure "Contact" is chosen.
    • "Operation 'delete' not supported!" — indicates an unsupported operation; verify that "Delete" is selected.
    • API errors related to authorization or missing permissions require checking the API key credentials.
  • Resolution tips:

    • Verify the contact ID exists in your Imobzi account before attempting deletion.
    • Ensure the API key credential is valid and has sufficient permissions.
    • Use expressions carefully to dynamically specify IDs.

Links and References

Discussion