Get ingest pipeline

After you create a pipeline, use the get ingest pipeline API operation to return all the information about a specific ingest pipeline.

Example

  1. GET _ingest/pipeline/12345

copy

Path and HTTP methods

Return all ingest pipelines.

  1. GET _ingest/pipeline

Returns a single ingest pipeline based on the pipeline’s ID.

  1. GET _ingest/pipeline/{id}

URL parameters

All parameters are optional.

ParameterTypeDescription
master_timeouttimeHow long to wait for a connection to the master node.

Response

  1. {
  2. "pipeline-id" : {
  3. "description" : "A description for your pipeline",
  4. "processors" : [
  5. {
  6. "set" : {
  7. "field" : "field-name",
  8. "value" : "value"
  9. }
  10. }
  11. ]
  12. }
  13. }