Create a connector sync job Beta
Create a connector sync job document in the internal index and initialize its counters and timestamps with default values.
Body Required
-
job_type string
Values are
full
,incremental
, oraccess_control
. -
trigger_method string
Values are
on_demand
orscheduled
.
POST /_connector/_sync_job
curl \
-X POST http://api.example.com/_connector/_sync_job \
-H "Content-Type: application/json" \
-d '{"id":"string","job_type":"full","trigger_method":"on_demand"}'
Request examples
{
"id": "string",
"job_type": "full",
"trigger_method": "on_demand"
}
Response examples (200)
{
"id": "string"
}