Skip to main content
PUT
/
query-stages
/
instances
/
{id}
Update a specific stage instance
import requests

url = "http://api/apollo/query-stages/instances/{id}"

payload = {
    "skip": False,
    "label": "<string>",
    "condition": "<string>"
}
headers = {"Content-Type": "application/json"}

response = requests.put(url, json=payload, headers=headers)

print(response.text)
{
  "type": "<string>",
  "id": "<string>",
  "skip": false,
  "label": "<string>",
  "condition": "<string>"
}

Headers

If-Match
string
default:"-1"

An entity tag to match against the specified stage instance

Path Parameters

id
string
required

The stage ID

Body

application/json

JSON-formatted configuration values

skip
boolean
default:false
label
string
condition
string

Response

200 - application/json

successful operation

type
string
id
string
skip
boolean
default:false
label
string
condition
string