If you’re new to Unstructured, read this note first.Before you can create a destination connector, you must first sign in to your Unstructured account:
- If you do not already have an Unstructured account, sign up for free. After you sign up, you are automatically signed in to your new Unstructured Let’s Go account, at https://platform.unstructured.io. To sign up for a Business account instead, contact Unstructured Sales, or learn more.
- If you already have an Unstructured Let’s Go, Pay-As-You-Go, or Business SaaS account and are not already signed in, sign in to your account at https://platform.unstructured.io. For other types of Business accounts, see your Unstructured account administrator for sign-in instructions, or email Unstructured Support at support@unstructured.io.
-
After you sign in to your Unstructured Let’s Go, Pay-As-You-Go, or Business account, click API Keys on the sidebar.
For a Business account, before you click API Keys, make sure you have selected the organizational workspace you want to create an API key for. Each API key works with one and only one organizational workspace. Learn more. -
Click Generate API Key.
-
Follow the on-screen instructions to finish generating the key.
-
Click the Copy icon next to your new key to add the key to your system’s clipboard. If you lose this key, simply return and click the Copy icon again.
- For the Unstructured UI or the Unstructured API, only Elastic Cloud instances are supported.
- For Unstructured Ingest, Elastic Cloud instances and self-manged Elasticsearch instances are supported.
-
For Elastic Cloud, you will need an Elastic Cloud service instance.
-
For self-managed Elasticsearch, you will need a self-managed Elasticsearch instance.
-
You will need the name of the index on the instance.
For the destination connector, if you need to create an index, you can use for example the following
curlcommand. Replace the following placeholders:- Replace
<host>:<port>with the instance’s host identifier and port number. - Replace
<username>with your Elasticsearch user name, and replace<password>with your password. - Replace
<index-name>with the name of the new index on the instance. - Replace
<index-schema>with the schema for the index. A schema is optional; see the explanation following thiscurlcommand for more information.
To learn more, see Create index and Get index. For the destination connector, the index does not need to contain a schema beforehand. If Unstructured encounters an index without a schema, Unstructured will automatically create a compatible schema for you before inserting items into the index. Nonetheless, to reduce possible schema compatibility issues, Unstructured recommends that you create a schema that is compatible with Unstructured’s schema. Unstructured cannot provide a schema that is guaranteed to work in all circumstances. This is because these schemas will vary based on your source files’ types; how you want Unstructured to partition, chunk, and generate embeddings; any custom post-processing code that you run; and other factors. You can adapt the following index schema example for your own needs:See also:- An Introduction to Elasticsearch Mapping
- Explicit mapping
- Dynamic field mapping
- Unstructured document elements and metadata
- Replace
- For Elastic Cloud, you will need the Elastic Cloud service instance’s API key. If you are using Unstructured Ingest, you will also need the instance’s Cloud ID. To get these, see your Elasticsearch Service web console.
-
For self-managed Elasticsearch, you will need:
- The self-managed instance’s hostname and port number. See Networking.
- If you’re using basic authentication to the self-managed instance, the user’s name and password.
- If you’re using token-based authentication to the self-managed instance, the bearer token or API key for the instance. See Token-based authentication services and Create API key.
- If you’re using certificate authentication to the self-managed instance, the path to the Certificate Authority (CA) file on the instance, and the certificate fingerprint. See SSL certificate API and Where can I see my Certificate Fingerprint?.
<name>(required) - A unique name for this connector.hostsis a required array, with<host-url>specifying the URL of the Elastic Cloud instance to access, for example:["https://<random-number>.<region>.<cloud-provider>.cloud.es.io"].<es-api-key>(required) - The Elastic Cloud API key for the target cluster.<index-name>(required) - The name of the target index in the cluster.

