Skip to main content
POST
/
configurations
/
{key}
Create a configuration item
import requests

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

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

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

print(response.text)
This response has no body data.

Path Parameters

key
string
required

The new configuration item key.

Query Parameters

secret
boolean

Store this item as encrypted.

Body

The new configuration item value.

The body is of type string.

Response

200 - undefined