Check in a connector sync job Technical preview
Check in a connector sync job and set the last_seen field to the current time before updating it in the internal index.
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.
PUT /_connector/_sync_job/{connector_sync_job_id}/_check_in
Console
PUT _connector/_sync_job/my-connector-sync-job/_check_in resp = client.connector.sync_job_check_in( connector_sync_job_id="my-connector-sync-job", ) const response = await client.connector.syncJobCheckIn({ connector_sync_job_id: "my-connector-sync-job", }); response = client.connector.sync_job_check_in( connector_sync_job_id: "my-connector-sync-job" ) $resp = $client->connector()->syncJobCheckIn([ "connector_sync_job_id" => "my-connector-sync-job", ]); curl -X PUT -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_connector/_sync_job/my-connector-sync-job/_check_in"