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

url = "http://api/apollo/collections/{collection}/features/{feature}"

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

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

print(response.text)

Headers

If-Match
string
default:"-1"

An entity 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

Response

default

successful operation