Skip to main content
PUT
/
configurations
/
{key}
Update a configuration item
import requests

url = "https://{FUSION HOST}/api/configurations/{key}"

payload = "<string>"
headers = {"Content-Type": "application/json"}

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

print(response.json())

Path Parameters

key
string
required

A configuration item key.

Query Parameters

secret
boolean

Store this item as encrypted.

Body

application/json · string

The configuration item value.

The body is of type string.