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.Create a configuration item
Define a new configuration item.
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.Was this page helpful?
⌘I