Back to Integrations
integrationEnormail node
HTTP Request
integrationKibana node
HTTP Request

Enormail and Kibana integration

Save yourself the work of writing custom integrations for Enormail and Kibana and use n8n instead. Build adaptable and scalable Marketing, and Cybersecurity workflows that work with your technology stack. All within a building experience you will love.

How to connect Enormail and Kibana

  • Step 1: Create a new workflow
  • Step 2: Add and configure nodes
  • Step 3: Connect
  • Step 4: Customize and extend your integration
  • Step 5: Test and activate your workflow

Step 1: Create a new workflow and add the first step

In n8n, click the "Add workflow" button in the Workflows tab to create a new workflow. Add the starting point – a trigger on when your workflow should run: an app event, a schedule, a webhook call, another workflow, an AI chat, or a manual trigger. Sometimes, the HTTP Request node might already serve as your starting point.

Enormail and Kibana integration: Create a new workflow and add the first step

Step 2: Add and configure Kibana and Enormail nodes using the HTTP Request nodes

You can find the Kibana node in the nodes panel and drag it onto your workflow canvas. It will be added as the HTTP Request node with a pre-configured credential type. To add the Enormail app to the workflow, select the HTTP Request node and use a generic authentication method. The HTTP Request node makes custom API calls to Kibana and Enormail. Configure Kibana and Enormail nodes one by one: input data on the left, parameters in the middle, and output data on the right.

Kibana and Enormail integration: Add and configure Kibana and Enormail nodes using the HTTP Request node

Step 3: Connect Kibana and Enormail

A connection establishes a link between Kibana and Enormail (or vice versa) to route data through the workflow. Data flows from the output of one node to the input of another. You can have single or multiple connections for each node.

Kibana and Enormail integration: Connect Kibana and Enormail

Step 4: Customize and extend your Kibana and Enormail integration

Use n8n's core nodes such as If, Split Out, Merge, and others to transform and manipulate data. Write custom JavaScript or Python in the Code node and run it as a step in your workflow. Connect Kibana and Enormail with any of n8n’s 1000+ integrations, and incorporate advanced AI logic into your workflows.

Kibana and Enormail integration: Customize and extend your Kibana and Enormail integration

Step 5: Test and activate your Kibana and Enormail workflow

Save and run the workflow to see if everything works as expected. Based on your configuration, data should flow from Kibana and Enormail or vice versa. Easily debug your workflow: you can check past executions to isolate and fix the mistake. Once you've tested everything, make sure to save your workflow and activate it.

Kibana and Enormail integration: Test and activate your Kibana and Enormail workflow

Build your own Enormail and Kibana integration

Create custom Enormail and Kibana workflows by choosing triggers and actions. Nodes come with global operations and settings, as well as app-specific parameters that can be configured. You can also use the HTTP Request node to query data from any app or service with a REST API.

Supported API Endpoints for Enormail

To set up Enormail integration, add the HTTP Request node to your workflow canvas and authenticate it using a generic authentication method. The HTTP Request node makes custom API calls to Enormail to query the data you need using the API endpoint URLs you provide.

Get account info
Retrieves information about the accessed Enormail user account.
GET
/api/1.0/account.json
Get account senders
Retrieves a list of allowed senders for the accessed account.
GET
/api/1.0/account/senders.json

These API endpoints were generated using n8n

n8n AI workflow transforms web scraping into an intelligent, AI-powered knowledge extraction system that uses vector embeddings to semantically analyze, chunk, store, and retrieve the most relevant API documentation from web pages. Remember to check the Enormail official documentation to get a full list of all API endpoints and verify the scraped ones!

List lists
Retrieves a list of all mailing lists.
GET
/api/1.0/lists.{json|xml}?page={page}
Get list details
Retrieves details of a specific mailing list.
GET
/api/1.0/lists/{listid}.{json|xml}
Create list
Creates a new list to import and subscribe contacts to.
POST
/api/1.0/lists.{json|xml}

These API endpoints were generated using n8n

n8n AI workflow transforms web scraping into an intelligent, AI-powered knowledge extraction system that uses vector embeddings to semantically analyze, chunk, store, and retrieve the most relevant API documentation from web pages. Remember to check the Enormail official documentation to get a full list of all API endpoints and verify the scraped ones!

List contacts
Fetches a list of active contacts from your account and the specified list.
GET
/api/1.0/contacts/{listid}/active.json?page={pagenum}
List unsubscribed contacts
Fetches a list of unsubscribed contacts from your account and the specified list.
GET
/api/1.0/contacts/{listid}/unsubscribed.json?page={pagenum}
Get unconfirmed contacts
Fetches a list of unconfirmed contacts from your account and the specified list.
GET
/api/1.0/contacts/{listid}/unconfirmed.json?page={pagenum}
List bounced contacts
Fetches a list of bounced contacts from your account and the specified list.
GET
/api/1.0/contacts/{listid}/bounced.{json|xml}?page={pagenum}
Get contact's details
Retrieves a contact's details.
GET
/api/1.0/contacts/{listid}.{json|xml}?email={email}
Add contact
Adds a contact to your list and returns the new contact details in the location header.
POST
/api/1.0/contacts/{listid}.{json|xml}
Update contact
Updates an existing contact with the provided data.
PUT
/api/1.0/contacts/{listid}.{json|xml}?email={$email}
Unsubscribe contact
Unsubscribes a contact from your mailinglist.
POST
/api/1.0/contacts/{listid}/unsubscribe.{json|xml}
Delete contact
Deletes a contact from your mailinglist.
DELETE
/api/1.0/contacts/{listid}.{json|xml}?email={email}

These API endpoints were generated using n8n

n8n AI workflow transforms web scraping into an intelligent, AI-powered knowledge extraction system that uses vector embeddings to semantically analyze, chunk, store, and retrieve the most relevant API documentation from web pages. Remember to check the Enormail official documentation to get a full list of all API endpoints and verify the scraped ones!

Get sent mailings
Finds a list of sent mailings from your account.
GET
/api/1.0/mailings/sent.{json|xml}?page={pagenum}
Get draft mailings
Finds a list of draft mailings from your account.
GET
/api/1.0/mailings/drafts.json?page={pagenum}
Get scheduled mailings
Finds a list of scheduled mailings from your account.
GET
/api/1.0/mailings/scheduled.json?page={pagenum}
Get mailing statistics
Retrieves the click, send, bounced, unsubscribed and opened statistics for a mailing.
GET
/api/1.0/mailings/{mailingid}/stats.{json|xml}
Create draft mailing
Creates a new draft mailing in your account.
POST
/api/1.0/mailings.{json|xml}
Send mailing
Sends a draft mailing from your account.
POST
/api/1.0/mailings/{mailingid}/send.{json|xml}
Unschedule mailing
Unschedules a scheduled mailing and saves it in your draft mailings.
POST
/api/1.0/mailings/{mailingid}/unschedule.{json|xml}
Delete mailing
Deletes a mailing from your draft mailings.
DELETE
/api/1.0/mailings/{mailingid}/delete.{json|xml}

These API endpoints were generated using n8n

n8n AI workflow transforms web scraping into an intelligent, AI-powered knowledge extraction system that uses vector embeddings to semantically analyze, chunk, store, and retrieve the most relevant API documentation from web pages. Remember to check the Enormail official documentation to get a full list of all API endpoints and verify the scraped ones!

Subscribe contact
Subscribes a contact through your subscription form.
POST
/api/1.0/forms/{formid}.{json|xml}
Get forms
Retrieves a list of forms from your account.
GET
/api/1.0/forms.{json|xml}
Render form HTML
Renders the form and returns the html of the requested form.
GET
/api/1.0/forms/{formid}/html.{json|xml}

These API endpoints were generated using n8n

n8n AI workflow transforms web scraping into an intelligent, AI-powered knowledge extraction system that uses vector embeddings to semantically analyze, chunk, store, and retrieve the most relevant API documentation from web pages. Remember to check the Enormail official documentation to get a full list of all API endpoints and verify the scraped ones!

Supported methods for Kibana

Delete
Get
Head
Options
Patch
Post
Put

Requires additional credentials set up

Use n8n’s HTTP Request node with a predefined or generic credential type to make custom API calls.

FAQs

  • Can Enormail connect with Kibana?

  • Can I use Enormail’s API with n8n?

  • Can I use Kibana’s API with n8n?

  • Is n8n secure for integrating Enormail and Kibana?

  • How to get started with Enormail and Kibana integration in n8n.io?

Looking to integrate Enormail and Kibana in your company?

Over 3000 companies switch to n8n every single week

Why use n8n to integrate Enormail with Kibana

Build complex workflows, really fast

Build complex workflows, really fast

Handle branching, merging and iteration easily.
Pause your workflow to wait for external events.

Code when you need it, UI when you don't

Simple debugging

Your data is displayed alongside your settings, making edge cases easy to track down.

Use templates to get started fast

Use 1000+ workflow templates available from our core team and our community.

Reuse your work

Copy and paste, easily import and export workflows.

Implement complex processes faster with n8n

red iconyellow iconred iconyellow icon