GET
/
templates
/
query-pipelines
/
{templateId}
Get a query pipeline template
curl --request GET \
  --url https://{FUSION HOST}/api/templates/query-pipelines/{templateId} \
  --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

templateId
string
required

The unique identifier of the query pipeline template to retrieve.

Query Parameters

id
string

Optional ID used as the template identifier.

Response

Successfully retrieved the query pipeline template.

id
string

The query pipeline ID.

stages
object[]

The stages in this query pipeline.

properties
object