GET
/
query-pipelines
/
{id}
Get a query pipeline
curl --request GET \
  --url https://{FUSION HOST}/api/query-pipelines/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "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.

Path Parameters

id
string
required

The query pipeline ID.

Response

200 - application/json

OK

The response is of type object.