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 * attributes Show * attributes object
-
Hide depends_on attributes Show depends_on attributes object
-
Values are
textbox
,textarea
,numeric
,toggle
, ordropdown
. -
Hide options attributes Show options attributes object
-
Values are
str
,int
,list
, orbool
.
-
-
Hide custom_scheduling attribute Show custom_scheduling attribute object
-
Hide * attributes Show * attributes object
-
-
Hide features attributes Show features attributes object
-
Hide filtering attributes Show filtering attributes object
-
Hide active attributes Show active attributes object
-
Hide rules attributes Show rules attributes object
-
Path to field or array of paths. Some API's support wildcards in the path to select multiple fields.
-
Values are
exclude
orinclude
. -
Values are
contains
,ends_with
,equals
,regex
,starts_with
,>
, or<
.
-
Hide draft attributes Show draft attributes object
-
Hide rules attributes Show rules attributes object
-
Path to field or array of paths. Some API's support wildcards in the path to select multiple fields.
-
Values are
exclude
orinclude
. -
Values are
contains
,ends_with
,equals
,regex
,starts_with
,>
, or<
.
-
last_access_control_sync_scheduled_at
string | number 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
, orsuspended
. last_incremental_sync_scheduled_at
string | number 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.
last_sync_scheduled_at
string | number 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
, orsuspended
. -
Hide scheduling attributes Show scheduling attributes object
-
Values are
created
,needs_configuration
,configured
,connected
, orerror
.
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"