Skip to main content
POST
/
index-pipelines
Create a new pipeline
import requests

url = "http://api/apollo/index-pipelines"

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

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

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

Body

application/json · object

Response

200 - application/json

successful operation

id
string
stages
object[]
properties
object