curl --request GET \
--url https://{FUSION HOST}/api/query-pipelines \
--header 'Authorization: Basic <encoded-value>'
[
{
"id": "<string>",
"stages": [
{
"type": "<string>",
"id": "<string>",
"skip": true,
"label": "<string>",
"condition": "<string>"
}
],
"properties": {}
}
]
Use this endpoint to discover existing query pipelines and their IDs and attributes.
curl --request GET \
--url https://{FUSION HOST}/api/query-pipelines \
--header 'Authorization: Basic <encoded-value>'
[
{
"id": "<string>",
"stages": [
{
"type": "<string>",
"id": "<string>",
"skip": true,
"label": "<string>",
"condition": "<string>"
}
],
"properties": {}
}
]
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
OK
The response is of type object[]
.
Was this page helpful?