Update connector API key ID API

Update connector API key ID API

This functionality is in beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features.

New API reference

For the most up-to-date API details, refer to Connector APIs.

Updates the api_key_id and/or api_key_secret_id field(s) of a connector, specifying:

  1. The ID of the API key used for authorization
  2. The ID of the Connector Secret where the API key is stored

The Connector Secret ID is only required for Elastic managed connectors. Self-managed connectors do not use this field. See the documentation for programmatically managed connector API keys for more details.

To get started with Connector APIs, check out our tutorial.

Request

PUT _connector/<connector_id>/_api_key_id

Prerequisites

  • To sync data using self-managed connectors, you need to deploy the Elastic connector service. on your own infrastructure. This service runs automatically on Elastic Cloud for Elastic managed connectors.
  • The connector_id parameter should reference an existing connector.
  • The api_key_id parameter should reference an existing API key.
  • The api_key_secret_id parameter should reference an existing Connector Secret containing an encoded API key value.

Path parameters

<connector_id>

(Required, string)

Request body

api_key_id

(Optional, string) ID of the API key that the connector will use to authorize access to required indices. Each connector can be associated with at most one API key.

api_key_secret_id

(Optional, string) ID of the Connector Secret that contains the encoded API key. This should be the same API key as api_key_id references. This is only required for Elastic managed connectors.

Response codes

200

Connector api_key_id and/or api_key_secret_id field(s) successfully updated.

400

The connector_id was not provided or the request payload was malformed.

404 (Missing resources)

No connector matching connector_id could be found.

Examples

The following example updates the api_key_id and api_key_secret_id field(s) for the connector with ID my-connector:

  1. resp = client.connector.update_api_key_id(
  2. connector_id="my-connector",
  3. api_key_id="my-api-key-id",
  4. api_key_secret_id="my-connector-secret-id",
  5. )
  6. print(resp)
  1. response = client.connector.update_api_key_id(
  2. connector_id: 'my-connector',
  3. body: {
  4. api_key_id: 'my-api-key-id',
  5. api_key_secret_id: 'my-connector-secret-id'
  6. }
  7. )
  8. puts response
  1. const response = await client.connector.updateApiKeyId({
  2. connector_id: "my-connector",
  3. api_key_id: "my-api-key-id",
  4. api_key_secret_id: "my-connector-secret-id",
  5. });
  6. console.log(response);
  1. PUT _connector/my-connector/_api_key_id
  2. {
  3. "api_key_id": "my-api-key-id",
  4. "api_key_secret_id": "my-connector-secret-id"
  5. }
  1. {
  2. "result": "updated"
  3. }