start-transform.asciidoc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[start-data-frame-transform]]
  4. === Start {dataframe-transforms} API
  5. [subs="attributes"]
  6. ++++
  7. <titleabbrev>Start {dataframe-transforms}</titleabbrev>
  8. ++++
  9. beta[]
  10. Starts one or more {dataframe-transforms}.
  11. ==== Request
  12. `POST _data_frame/transforms/<data_frame_transform_id>/_start`
  13. //==== Description
  14. ==== Path Parameters
  15. `data_frame_transform_id` (required)::
  16. (string) Identifier for the {dataframe-transform}. This identifier can contain
  17. lowercase alphanumeric characters (a-z and 0-9), hyphens, and underscores. It
  18. must start and end with alphanumeric characters.
  19. //==== Request Body
  20. ==== Authorization
  21. If the {es} {security-features} are enabled, you must have
  22. `manage_data_frame_transforms` cluster privileges to use this API. You must also
  23. have `view_index_metadata` privileges on the source index for the
  24. {dataframe-transform}. For more information, see
  25. {stack-ov}/security-privileges.html[Security privileges] and
  26. {stack-ov}/built-in-roles.html[Built-in roles].
  27. ==== Examples
  28. The following example starts the `ecommerce_transform` {dataframe-transform}:
  29. [source,js]
  30. --------------------------------------------------
  31. POST _data_frame/transforms/ecommerce_transform/_start
  32. --------------------------------------------------
  33. // CONSOLE
  34. // TEST[skip:set up kibana samples]
  35. When the {dataframe-transform} starts, you receive the following results:
  36. [source,js]
  37. ----
  38. {
  39. "acknowledged" : true
  40. }
  41. ----
  42. // TESTRESPONSE