Skip to main content
GET
/
templates
/
query-pipelines
List all query pipeline templates
import requests

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

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

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

print(response.json())
{}

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

Successfully retrieved the list of query pipeline templates.

The response is of type object.