Notificações Inteligentes icon

Notificações Inteligentes

NI Integration

Overview

This node allows users to create a new integration by specifying its name and platform. It is useful in scenarios where you want to programmatically register or configure integrations with various external platforms or services within an automation workflow. For example, you might use this node to add a new marketing platform integration or e-commerce platform connection dynamically as part of your automation setup.

Properties

Name Meaning
Integration Name The name of the integration to be created. This is a required string property with a maximum length of 100 characters.
Platform The platform for the integration. This is a required string property where you specify the target platform's identifier. Examples include "abmex", "active-campaign", "api-next", "shopify-next", "woocommerce", "mailchimp", and many others as listed in the property description.

Output

The node outputs JSON data representing the newly created integration. The exact structure depends on the API response but typically includes details such as the integration ID, name, platform, creation timestamp, and possibly status or configuration metadata.

No binary data output is indicated.

Dependencies

  • Requires access to an external API endpoint at https://api.notificacoesinteligentes.com (as seen in bundled code).
  • The node uses an HTTP request helper with authentication configured under a generic "niApi" credential.
  • Proper API credentials or tokens must be configured in n8n to authenticate requests to the external service.

Troubleshooting

  • Common issues:

    • Authentication failures if API credentials are missing or invalid.
    • Validation errors if the integration name exceeds 100 characters or if the platform value is not recognized.
    • Network timeouts or connectivity issues when calling the external API.
  • Error messages:

    • Errors related to HTTP request failures will likely indicate network or authentication problems.
    • Validation errors from the API may specify which input property is invalid.
  • Resolutions:

    • Ensure API credentials are correctly set up in n8n.
    • Validate input properties before execution.
    • Check network connectivity and API availability.

Links and References

  • No direct links provided in the source code.
  • Refer to the external service's API documentation at https://api.notificacoesinteligentes.com for detailed integration creation API specs.

Discussion