Path parameters
- transform_id
string Required Identifier for the transform.
Query parameters
- timeout
string Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
Values are
-1
or0
. - from
string Restricts the set of transformed entities to those changed after this time. Relative times like now-30d are supported. Only applicable for continuous transforms.
POST /_transform/{transform_id}/_start
curl \
--request POST 'http://api.example.com/_transform/{transform_id}/_start' \
--header "Authorization: $API_KEY"
Response examples (200)
A successful response when a transform starts.
{
"acknowledged": true
}