Skip to main content
GET
/
query-pipelines
Get all query pipelines
import requests

url = "https://{FUSION HOST}/api/query-pipelines"

headers = {"Authorization": "Basic <encoded-value>"}

response = requests.get(url, headers=headers)

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

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

OK

id
string

The query pipeline ID.

stages
object[]

The stages in this query pipeline.

properties
object