Immojump icon

Immojump

Interact with the ImmoJump API

Actions9

Overview

This node integrates with the ImmoJump API to create a new real estate property entry ("Immobilie"). It allows users to submit details such as title, address, price, and property type to register a new property in the system.

Common scenarios include:

  • Real estate agencies automating the addition of new property listings.
  • Property management systems syncing newly acquired properties into ImmoJump.
  • Workflow automation where property data from other sources is pushed into ImmoJump for centralized management.

Practical example:

  • Automatically creating a new apartment listing when a form is submitted on a website, by passing the title, address, price, and selecting "Apartment" as the property type.

Properties

Name Meaning
Title The title or name of the property (required).
Address The physical address of the property (required).
Price The monetary value or price of the property.
Property Type The category of the property. Options: Apartment, House, Commercial, Land.

Output

The node outputs JSON data representing the created property record as returned by the ImmoJump API. This typically includes identifiers and all submitted fields, confirming successful creation.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authenticating with the ImmoJump API.
  • Needs configuration of base URL, authentication token, and organization ID within the credentials.
  • The node sends HTTP requests with JSON payloads to the ImmoJump REST API endpoints.

Troubleshooting

  • Missing required fields: Ensure that "Title" and "Address" are provided; these are mandatory.
  • Authentication errors: Verify that the API token and organization ID are correctly set in credentials.
  • API endpoint issues: Confirm the base URL is correct and accessible.
  • Unexpected API responses: Check network connectivity and API status; enable debug logging to inspect request/response details.
  • Invalid property type: Use one of the allowed options (Apartment, House, Commercial, Land).

Links and References

  • ImmoJump API documentation (not provided here, but recommended to consult for detailed API behavior)
  • n8n documentation on creating custom nodes and using credentials

Discussion