Get the details about a connector.
A flag to indicate if the desired connector should be fetched, even if it was soft-deleted.
Values are textbox, textarea, numeric, toggle, or dropdown.
Values are str, int, list, or bool.
Path to field or array of paths. Some API's support wildcards in the path to select multiple fields.
Values are exclude or include.
Values are contains, ends_with, equals, regex, starts_with, >, or <.
Path to field or array of paths. Some API's support wildcards in the path to select multiple fields.
Values are exclude or include.
Values are contains, ends_with, equals, regex, starts_with, >, or <.
A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a number of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string representation.
Values are canceling, canceled, completed, error, in_progress, pending, or suspended.
A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a number of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string representation.
A date and time, either as a string whose format can depend on the context (defaulting to ISO 8601), or a number of milliseconds since the Epoch. Elasticsearch accepts both as input, but will generally output a string representation.
Values are canceling, canceled, completed, error, in_progress, pending, or suspended.
Values are created, needs_configuration, configured, connected, or error.
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")
);