Responses
-
Hide response attributes Show response attributes object
cancelation_requested_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.
-
Hide connector attributes Show connector attributes object
-
Hide configuration attribute Show configuration attribute object
-
Hide filtering attributes Show filtering attributes object
-
Hide advanced_snippet attributes Show advanced_snippet 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<
.
-
-
created_at
string | number Required 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
full
,incremental
, oraccess_control
. -
Values are
canceling
,canceled
,completed
,error
,in_progress
,pending
, orsuspended
. -
Values are
on_demand
orscheduled
.
GET _connector/_sync_job/my-connector-sync-job
resp = client.connector.sync_job_get( connector_sync_job_id="my-connector-sync-job", )
const response = await client.connector.syncJobGet({ connector_sync_job_id: "my-connector-sync-job", });
response = client.connector.sync_job_get( connector_sync_job_id: "my-connector-sync-job" )
$resp = $client->connector()->syncJobGet([ "connector_sync_job_id" => "my-connector-sync-job", ]);
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_connector/_sync_job/my-connector-sync-job"
client.connector().syncJobGet(s -> s .connectorSyncJobId("my-connector-sync-job") );