Create a connector sync job Beta

POST /_connector/_sync_job

Create a connector sync job document in the internal index and initialize its counters and timestamps with default values.

application/json

Body Required

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • id string Required
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"
}