POST
/_rollup/job/{id}/_start
Console
POST _rollup/job/sensor/_start
resp = client.rollup.start_job(
id="sensor",
)
const response = await client.rollup.startJob({
id: "sensor",
});
response = client.rollup.start_job(
id: "sensor"
)
$resp = $client->rollup()->startJob([
"id" => "sensor",
]);
curl -X POST -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_rollup/job/sensor/_start"
client.rollup().startJob(s -> s
.id("sensor")
);
Response examples (200)
A successful response from `POST _rollup/job/sensor/_start`.
{
"started": true
}