EmailConnect icon

EmailConnect

Interact with EmailConnect API for email automation

Overview

This node interacts with the EmailConnect API to manage webhooks related to email automation. Specifically, the "Webhook - Get" operation retrieves details of a single webhook by its ID. This is useful when you want to fetch configuration or status information about a specific webhook that you have previously created in your EmailConnect account.

Practical examples include:

  • Retrieving the URL and description of a webhook to verify its setup.
  • Checking webhook details before updating or deleting it.
  • Using webhook data in workflows to conditionally branch logic based on webhook properties.

Properties

Name Meaning
Webhook ID The unique identifier of the webhook to retrieve. This is required to specify which webhook's details to get.

Output

The output is an array of JSON objects where each object contains the full details of the requested webhook as returned by the EmailConnect API. The structure typically includes fields such as the webhook's ID, URL, description, and other metadata related to the webhook configuration.

No binary data is output by this operation.

Example output JSON snippet:

{
  "id": "12345",
  "url": "https://myapp.com/webhook/email",
  "description": "Main email processing webhook",
  ...
}

Dependencies

  • Requires an active connection to the EmailConnect API using an API key credential configured in n8n.
  • The node uses HTTP requests to the EmailConnect API endpoints.
  • No additional environment variables are explicitly required beyond the API authentication.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Webhook ID will likely result in an error from the API indicating the webhook was not found.
    • Network connectivity problems can cause request failures.
    • Missing or incorrect API credentials will prevent successful API calls.
  • Error messages:

    • "Webhook not found": Verify the Webhook ID is correct and exists in your EmailConnect account.
    • "Unauthorized" or authentication errors: Check that the API key credential is properly set up and has necessary permissions.
    • Timeout or network errors: Ensure your n8n instance can reach the EmailConnect API endpoint.

Links and References

Discussion