Schedule a transform to start now Added in 8.7.0

POST /_transform/{transform_id}/_schedule_now

Instantly run a transform to process data. If you run this API, the transform will process the new data instantly, without waiting for the configured frequency interval. After the API is called, the transform will be processed again at now + frequency unless the API is called again in the meantime.

Path parameters

Query parameters

  • timeout string

    Controls the time to wait for the scheduling to take place

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • acknowledged boolean Required

      For a successful response, this value is always true. On failure, an exception is returned instead.

POST /_transform/{transform_id}/_schedule_now
curl \
 --request POST 'http://api.example.com/_transform/{transform_id}/_schedule_now' \
 --header "Authorization: $API_KEY"
Response examples (200)
A successful response when the transform is scheduled to run now.
{
  "acknowledged": true
}