> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Index

Creates a new index.

You can use the create index operation to add a new index to an Elasticsearch cluster. When creating an index, you can specify the following:

* Settings for the index
* Mappings for fields in the index
* Index aliases.

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
  | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Index     | Name of the index you wish to create.<br /><br />Index names must meet the following criteria:<br /><br />- Lowercase only<br />- Cannot include , /, \*, ?, ", \<, >, \|, ' ' (space character), , (comma), #<br />- Indices prior to 7.0 could contain a colon (:), but that’s been deprecated and won’t be supported in 7.0+<br />- Cannot start with -, \_, +<br />- Cannot be . or ..<br />- Cannot be longer than 255 bytes (note it is bytes, so multi-byte characters will count towards the 255 limit faster)<br />- Names starting with . are deprecated, except for hidden indices and internal indices managed by plugins. |
  | Mappings  | Mapping for fields in the index. If specified, this mapping can include field names, field data types and mapping parameters.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
  | Settings  | Configuration options for the index.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
</div>

## Workflow Library Example

[Create Index with Elasticsearch and Send Results Via Email](https://library.blinkops.com/workflows/create-index-with-elasticsearch-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/create-index-with-elasticsearch-and-send-results-via-email/canvas" />
</div>
