Inmobalia CRM icon

Inmobalia CRM

Interact with Inmobalia CRM API

Overview

This node integrates with the Inmobalia CRM API to retrieve detailed descriptions of real estate properties. Specifically, the "Get Description" operation under the "Property" resource fetches a textual description of a property in a specified language. This is useful for scenarios where you want to display or process localized property descriptions, such as generating multilingual listings, creating marketing materials, or syncing property details with other systems.

For example, a real estate agency could use this node to automatically pull property descriptions in different languages to populate their website or CRM system, ensuring that clients see information in their preferred language.

Properties

Name Meaning
Property ID The unique numeric identifier of the property whose description you want to retrieve.
Language The language code (e.g., "en", "es") specifying the language in which to get the description.

Output

The output JSON contains the property description data retrieved from the Inmobalia CRM API. It typically includes fields representing the textual description of the property in the requested language. The exact structure depends on the API response but generally provides localized descriptive content about the property.

No binary data output is indicated for this operation.

Example output snippet (conceptual):

{
  "description": "Spacious 3-bedroom apartment located in downtown...",
  "language": "en",
  "propertyId": 12345
}

Dependencies

  • Requires an active connection to the Inmobalia CRM API.
  • Needs valid API authentication credentials configured in n8n (an OAuth2 API key credential).
  • Network access to the Inmobalia CRM service endpoint.

Troubleshooting

  • Common issues:

    • Invalid or missing Property ID: Ensure the Property ID is correct and exists in the CRM.
    • Unsupported language code: Verify that the language parameter matches supported languages by the CRM.
    • Authentication errors: Confirm that the API credentials are valid and have necessary permissions.
    • Network connectivity problems: Check internet connection and firewall settings.
  • Error messages:

    • Unsupported operation: Occurs if the operation name is incorrect or not implemented; verify operation spelling.
    • Unsupported resource: Happens if the resource name is invalid; ensure "properties" is selected.
    • API errors returned by the CRM will be wrapped and shown as node execution errors; review the error message for details.

Links and References

Discussion