Path parameters

  • transform_idstring Required

    Identifier for the transform.

Query parameters

  • timeoutstring

    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 or 0.

  • fromstring

    Restricts the set of transformed entities to those changed after this time. Relative times like now-30d are supported. Only applicable for continuous transforms.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • acknowledgedboolean Required

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

POST /_transform/{transform_id}/_start
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
}