Skip to main content
PUT
/
index-pipelines
/
{id}
Modify an existing pipeline
import requests

url = "http://api/apollo/index-pipelines/{id}"

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.put(url, json=payload, headers=headers)

print(response.text)
{
  "id": "<string>",
  "stages": [
    {
      "type": "<string>",
      "id": "<string>",
      "skip": false,
      "label": "<string>",
      "condition": "<string>"
    }
  ],
  "properties": {}
}

Headers

If-Match
string
default:"-1"

An entity tag to match against the specified blob

Path Parameters

id
string
required

Body

application/json · object

Response

200 - application/json

successful operation

id
string
stages
object[]
properties
object