Get a connector Beta; Added in 8.12.0
Get the details about a connector.
Query parameters
-
A flag to indicate if the desired connector should be fetched, even if it was soft-deleted.
Responses
-
Hide response attributes Show response attributes object
-
Hide configuration attribute Show configuration attribute object
-
Hide custom_scheduling attribute Show custom_scheduling attribute object
-
Hide * attributes Show * attributes object
-
-
Hide features attributes Show features attributes object
-
Indicates whether document-level security is enabled.
-
Indicates whether incremental syncs are enabled.
-
Indicates whether managed connector API keys are enabled.
-
-
Hide filtering attributes Show filtering attributes object
-
Values are
canceling,canceled,completed,error,in_progress,pending, orsuspended. -
Values are
canceling,canceled,completed,error,in_progress,pending, orsuspended. -
Hide scheduling attributes Show scheduling attributes object
-
Values are
created,needs_configuration,configured,connected, orerror.
GET /_connector/{connector_id}
GET _connector/my-connector-id resp = client.connector.get( connector_id="my-connector-id", ) const response = await client.connector.get({ connector_id: "my-connector-id", }); response = client.connector.get( connector_id: "my-connector-id" ) $resp = $client->connector()->get([ "connector_id" => "my-connector-id", ]); curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_connector/my-connector-id" client.connector().get(g -> g .connectorId("my-connector-id") );