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
Console
POST _transform/ecommerce-customer-transform/_start
resp = client.transform.start_transform(
transform_id="ecommerce-customer-transform",
)
const response = await client.transform.startTransform({
transform_id: "ecommerce-customer-transform",
});
response = client.transform.start_transform(
transform_id: "ecommerce-customer-transform"
)
$resp = $client->transform()->startTransform([
"transform_id" => "ecommerce-customer-transform",
]);
curl -X POST -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_transform/ecommerce-customer-transform/_start"
Response examples (200)
A successful response when a transform starts.
{
"acknowledged": true
}