PUT
/
query-pipelines
/
{id}
Update a query pipeline
curl --request PUT \
  --url https://{FUSION HOST}/api/query-pipelines/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "stages": [
    {
      "type": "<string>",
      "id": "<string>",
      "skip": true,
      "label": "<string>",
      "condition": "<string>"
    }
  ],
  "properties": {}
}'
{
  "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.

Headers

ifMatch
object

An optional tag to match.

Path Parameters

id
string
required

The query pipeline ID.

Query Parameters

context
string

The app to which this object belongs, as app:SomeApp.

Body

application/json

Response

200 - application/json

OK

The response is of type object.