Immojump icon

Immojump

Interact with the ImmoJump API

Actions9

Overview

The node interacts with the ImmoJump API to manage real estate ("Immobilie") entities. Specifically, the "Assign Tag" operation allows users to assign a tag to a given Immobilie by specifying its ID and the tag's name or ID. This is useful for categorizing or labeling properties within the ImmoJump system, enabling better organization, filtering, and management of real estate assets.

Practical examples include:

  • Assigning status tags like "For Sale", "Sold", or "Under Contract" to properties.
  • Labeling properties by type, e.g., "Residential", "Commercial".
  • Adding custom tags for internal workflows or marketing campaigns.

Properties

Name Meaning
Immobilie ID The unique identifier of the Immobilie (property) to which the tag will be assigned. Required.
Tag Name or ID The tag to assign to the Immobilie. Can be selected from a dynamically loaded list of tags or specified via an expression using the tag's ID. Required.

Output

The node outputs JSON data representing the result of the tag assignment operation. Typically, this would include confirmation of the tag being assigned or details about the updated Immobilie entity. The exact structure depends on the ImmoJump API response but generally includes identifiers and status information.

No binary data output is indicated in the source code.

Dependencies

  • Requires an API key credential for authenticating with the ImmoJump API.
  • Needs the base URL and organization ID configured in the credentials.
  • The node uses the ImmoJump REST API endpoints to fetch tags and perform operations.
  • Proper network access to the ImmoJump API endpoint is necessary.

Troubleshooting

  • Missing Organization ID: If the organization ID is not set in credentials, the node logs an error and cannot load tags or perform operations. Ensure the organization ID is correctly configured.
  • API Errors: Network issues or invalid credentials can cause API request failures. Error messages from the API are logged and surfaced as debug options in tag selection.
  • Invalid Immobilie ID or Tag: Providing incorrect IDs may result in errors or no changes. Verify IDs before running the node.
  • Empty or Unexpected API Responses: If the API returns unexpected data structures, the node logs warnings and may not function as expected.

Links and References

Discussion