Heather Halter 8ed9a9505b
More redirect fixes - index and ingestion APIs (#3975)
* more redirect fixes to index and ingest apis

Signed-off-by: Heather Halter <hdhalter@amazon.com>

* one more

Signed-off-by: Heather Halter <hdhalter@amazon.com>

---------

Signed-off-by: Heather Halter <hdhalter@amazon.com>
Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
2023-05-04 10:44:02 -07:00

988 B

layout title parent nav_order redirect_from
default Get ingest pipeline Ingest APIs 10
/opensearch/rest-api/ingest-apis/get-ingest/

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

GET _ingest/pipeline/12345

{% include copy-curl.html %}

Path and HTTP methods

Return all ingest pipelines.

GET _ingest/pipeline

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

GET _ingest/pipeline/{id}

URL parameters

All parameters are optional.

Parameter Type Description
master_timeout time How long to wait for a connection to the master node.

Response

{
  "pipeline-id" : {
    "description" : "A description for your pipeline",
    "processors" : [
      {
        "set" : {
          "field" : "field-name",
          "value" : "value"
        }
      }
    ]
  }
}