Skip to main content
PUT
/
collections
/
{collection}
/
features
/
{feature}
Update a feature
import requests

url = "https://{FUSION HOST}/api/collections/{collection}/features/{feature}"

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

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

print(response.json())

Headers

If-Match
string
default:"-1"

An optional tag to match against the specified feature.

Path Parameters

collection
string
required

The name of a collection.

feature
string
required

The name of a feature.

Query Parameters

callback
boolean
default:true

Additional commands to execute.

Body

application/json · object

JSON-formatted configuration values.

{key}
object